blob: a9206857f32c8617175c06d037bb5b73407f66b5 (
plain)
1
2
3
4
5
6
7
|
# This executable directly depends on NoDepB, NoDepC, SixA and SixB. However,
# since NoDepB and NoDepC do not have explicit dependency information,
# and they depend on NoDepA, we have to manually specify that dependency.
link_libraries( NoDepB NoDepC NoDepA SixB SixA )
add_executable( exec ExecMain.c )
|