diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-02-11 17:39:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-02-12 16:19:27 (GMT) |
commit | f2eee72facb9b4a658e1205bbe9113a808e76775 (patch) | |
tree | b9ee09e297649dffb9dc656936a263f1384703c2 /Tests/RunCMake/CMP0050/CMP0050-WARN.cmake | |
parent | c248a437c47b4419fd955d4b1f406f7c8b9dcd74 (diff) | |
download | CMake-f2eee72facb9b4a658e1205bbe9113a808e76775.zip CMake-f2eee72facb9b4a658e1205bbe9113a808e76775.tar.gz CMake-f2eee72facb9b4a658e1205bbe9113a808e76775.tar.bz2 |
add_custom_command: Disallow use of SOURCE signatures.
Add CMP0050 to control this behavior.
Diffstat (limited to 'Tests/RunCMake/CMP0050/CMP0050-WARN.cmake')
-rw-r--r-- | Tests/RunCMake/CMP0050/CMP0050-WARN.cmake | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/RunCMake/CMP0050/CMP0050-WARN.cmake b/Tests/RunCMake/CMP0050/CMP0050-WARN.cmake new file mode 100644 index 0000000..e57230e --- /dev/null +++ b/Tests/RunCMake/CMP0050/CMP0050-WARN.cmake @@ -0,0 +1,11 @@ + +add_library(empty empty.cpp) +add_custom_command( + TARGET empty + SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/input.h.in + COMMAND ${CMAKE_COMMAND} + ARGS -E copy ${CMAKE_CURRENT_SOURCE_DIR}/input.h.in + ${CMAKE_CURRENT_BINARY_DIR}/input.h + OUTPUTS ${CMAKE_CURRENT_BINARY_DIR}/input.h + DEPENDS ${CMAKE_COMMAND} +) |