cmake/Tests/RunCMake/CMP0116/CMP0116-Mixed.cmake
2021-09-14 00:13:48 +02:00

19 lines
425 B
CMake

add_custom_command(
OUTPUT warn.txt
COMMAND ${CMAKE_COMMAND} -E touch warn.txt
DEPFILE warn.d
)
cmake_policy(SET CMP0116 OLD)
add_custom_command(
OUTPUT old.txt
COMMAND ${CMAKE_COMMAND} -E touch old.txt
DEPFILE old.d
)
cmake_policy(SET CMP0116 NEW)
add_custom_command(
OUTPUT new.txt
COMMAND ${CMAKE_COMMAND} -E touch new.txt
DEPFILE new.d
)
add_custom_target(cc ALL DEPENDS warn.txt old.txt new.txt)