diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2002-01-19 00:21:43 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2002-01-19 00:21:43 (GMT) |
commit | b6bdbc54fc5f02aa166323855e67b7c7f61fb56e (patch) | |
tree | 8fe09182485c9b6c2a3d367ccbb3b6cec4928d97 /Tests/ComplexOneConfig/Library | |
parent | 747457abb647910742c5e13529894950d3c9ada4 (diff) | |
download | CMake-b6bdbc54fc5f02aa166323855e67b7c7f61fb56e.zip CMake-b6bdbc54fc5f02aa166323855e67b7c7f61fb56e.tar.gz CMake-b6bdbc54fc5f02aa166323855e67b7c7f61fb56e.tar.bz2 |
ENH: Increase test + coverage
Diffstat (limited to 'Tests/ComplexOneConfig/Library')
-rw-r--r-- | Tests/ComplexOneConfig/Library/CMakeLists.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Tests/ComplexOneConfig/Library/CMakeLists.txt b/Tests/ComplexOneConfig/Library/CMakeLists.txt index 798b6e1..5d6c89f 100644 --- a/Tests/ComplexOneConfig/Library/CMakeLists.txt +++ b/Tests/ComplexOneConfig/Library/CMakeLists.txt @@ -17,7 +17,7 @@ ADD_EXECUTABLE(create_file create_file.cxx) # # Attach a post-build custom-command to the lib. # It run ${CREATE_FILE_EXE} which will create the file -# ${Complex_BINARY_DIR}/postbuild.txt. +# ${Complex_BINARY_DIR}/Library/postbuild.txt. # The 'complex' executable will then test if this file exists, # and remove it. # @@ -25,20 +25,23 @@ ADD_DEPENDENCIES(CMakeTestLibraryShared create_file) ADD_CUSTOM_COMMAND(SOURCE CMakeTestLibraryShared COMMAND ${CREATE_FILE_EXE} - ARGS "${Complex_BINARY_DIR}/postbuild.txt" + ARGS "${Complex_BINARY_DIR}/Library/postbuild.txt" TARGET CMakeTestLibraryShared) # # Add custom target # It run ${CREATE_FILE_EXE} which will create the file -# ${Complex_BINARY_DIR}/custom_target1.txt. +# ${Complex_BINARY_DIR}/Library/custom_target1.txt. # The 'complex' executable will then test if this file exists, # and remove it. # ADD_CUSTOM_TARGET(custom_target1 ALL ${CREATE_FILE_EXE} - "${Complex_BINARY_DIR}/custom_target1.txt") + "${Complex_BINARY_DIR}/Library/custom_target1.txt") ADD_DEPENDENCIES(custom_target1 create_file) +# More coverage + +SOURCE_GROUP(A_GROUP ".cxx") |