cmake/Tests/Dependency/Four/CMakeLists.txt

7 lines
195 B
CMake
Raw Normal View History

2013-03-16 19:13:01 +02:00
include_directories(${Dependency_BINARY_DIR}/Two)
add_library( Four FourSrc.c )
target_link_libraries( Four One Two NoDepA )
2010-11-13 01:00:53 +02:00
# TwoCustom must build before Four.
2013-03-16 19:13:01 +02:00
add_dependencies(Four TwoCustom)