diff options
author | Brad King <brad.king@kitware.com> | 2011-01-26 21:29:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-01-26 23:01:33 (GMT) |
commit | 7befc00783ca9739e7585ff4d2b645a762a38396 (patch) | |
tree | 03ba33824ac0d370ce3b86968a9190d7cf087065 /Tests | |
parent | f0acf05656f0b5fe40e7e19adb7dd9343d674462 (diff) | |
download | CMake-7befc00783ca9739e7585ff4d2b645a762a38396.zip CMake-7befc00783ca9739e7585ff4d2b645a762a38396.tar.gz CMake-7befc00783ca9739e7585ff4d2b645a762a38396.tar.bz2 |
Handle trailing slashes on add_custom_command DEPENDS
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CustomCommandWorkingDirectory/CMakeLists.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Tests/CustomCommandWorkingDirectory/CMakeLists.txt b/Tests/CustomCommandWorkingDirectory/CMakeLists.txt index 57cb712..d272ffe 100644 --- a/Tests/CustomCommandWorkingDirectory/CMakeLists.txt +++ b/Tests/CustomCommandWorkingDirectory/CMakeLists.txt @@ -9,8 +9,7 @@ ADD_CUSTOM_COMMAND( ) SET_SOURCE_FILES_PROPERTIES( - "${TestWorkingDir_BINARY_DIR}/working.c" - "${TestWorkingDir_BINARY_DIR}/customTarget.c" + "${TestWorkingDir_BINARY_DIR}/customTarget.c" PROPERTIES GENERATED 1) ADD_EXECUTABLE(working "${TestWorkingDir_BINARY_DIR}/working.c" @@ -23,3 +22,14 @@ ADD_CUSTOM_TARGET( ) ADD_DEPENDENCIES(working Custom) + +file(MAKE_DIRECTORY ${TestWorkingDir_BINARY_DIR}/work) +add_custom_command( + OUTPUT working2.c # Relative to build tree + COMMAND "${CMAKE_COMMAND}" -E copy ${TestWorkingDir_SOURCE_DIR}/working.c.in ../working2.c + DEPENDS ${TestWorkingDir_SOURCE_DIR}/working.c.in/ # trailing slash should be removed + WORKING_DIRECTORY ${TestWorkingDir_BINARY_DIR}/work + ) +add_executable(working2 working2.c ${TestWorkingDir_BINARY_DIR}/customTarget.c) + +add_dependencies(working2 Custom2) |