CMake/Tests/Dependency/Four/CMakeLists.txt

7 lines
195 B
CMake
Raw Normal View History

include_directories(${Dependency_BINARY_DIR}/Two)
add_library( Four FourSrc.c )
target_link_libraries( Four One Two NoDepA )
2002-05-01 22:00:21 +04:00
# TwoCustom must build before Four.
add_dependencies(Four TwoCustom)