summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeCommands/target_link_libraries/targetC.cpp
blob: cae02b9cd235b5e2164451187cfdaae0c2fb0e83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#include "depG.h"

#include "bar.h"
#include "foo.h"

#ifndef TEST_DEF
#  error Expected TEST_DEF definition
#endif

int main(int, char**)
{
  DepG g;

  return g.foo();
}