summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeCommands/target_link_libraries/targetC.cpp
blob: ff6ba660ff42bfb13bd7003846ed73ea04144985 (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 argc, char **argv)
{
  DepG g;

  return g.foo();
}