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

#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();
}