mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -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 NEW)
|
|
|
|
add_custom_target(foo)
|
|
add_dependencies(foo bar)
|