summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeCommands/target_link_libraries/targetA.cpp
blob: 559aef7f0d9458449f575537d62298b7a3ab1a58 (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 argc, char **argv)
{
  DepA a;
  DepB b;
  DepC c;

  DepIfaceOnly iface_only;

  SubDirLibObject sd;

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