0bf6f13b1d
Added new policy CMP0046 which requires dependencies added by add_dependencies() to actually exist.
6 lines
103 B
CMake
6 lines
103 B
CMake
cmake_policy(SET CMP0046 OLD)
|
|
|
|
add_custom_target(foo)
|
|
add_custom_target(bar)
|
|
add_dependencies(foo bar)
|