summaryrefslogtreecommitdiff
path: root/Tests/CMakeCommands/target_link_libraries/targetA.cpp
blob: d1321a15fe64202d2a6ad78af8b89866d744e6ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#include "depB.h"
#include "depC.h"
#include "depIfaceOnly.h"

#include "subdirlib.h"

int main(int, char **)
{
  DepA a;
  DepB b;
  DepC c;

  DepIfaceOnly iface_only;

  SubDirLibObject sd;

  return a.foo() + b.foo() + c.foo() + iface_only.foo() + sd.foo();
}