mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-09 00:29:55 -06:00
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 OLD)
|
|
|
|
add_custom_target(foo)
|
|
add_dependencies(foo bar)
|