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

#include "depG.h"

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

#ifndef TEST_DEF
#error Expected TEST_DEF definition
#endif

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

  return g.foo();
}