summaryrefslogtreecommitdiff
path: root/Tests/CMakeCommands/target_link_libraries/targetA.cpp
blob: 3c6472e9a914eb5794dfde7bfc1a831013a11571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#include "depB.h"
#include "depC.h"

int main(int argc, char **argv)
{
  DepA a;
  DepB b;
  DepC c;

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