Imported Upstream version 2.8.9
[platform/upstream/cmake.git] / Tests / CMakeCommands / target_link_libraries / targetA.cpp
1
2 #include "depB.h"
3 #include "depC.h"
4
5 int main(int argc, char **argv)
6 {
7   DepA a;
8   DepB b;
9   DepC c;
10
11   return a.foo() + b.foo() + c.foo();
12 }