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