blob: 71c531fe9071c0ca9eb5ec7c217828980d12f9c1 (
plain)
1
2
3
4
5
6
|
include_directories(${Dependency_BINARY_DIR}/Two)
add_library( Four FourSrc.c )
target_link_libraries( Four One Two NoDepA )
# TwoCustom must build before Four.
add_dependencies(Four TwoCustom)
|