diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-01-18 20:39:24 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-01-18 20:39:24 (GMT) |
commit | 21224d0bf1904e86c35d232593aabbfb531eae83 (patch) | |
tree | 69ec4279fee8fd1dd8bf63b723c0d1d6a25fb673 /Tests/Complex/Library | |
parent | 21c01f609d87fc1e0d54977f0217c9bee7d3b9d1 (diff) | |
download | CMake-21224d0bf1904e86c35d232593aabbfb531eae83.zip CMake-21224d0bf1904e86c35d232593aabbfb531eae83.tar.gz CMake-21224d0bf1904e86c35d232593aabbfb531eae83.tar.bz2 |
Add GENERATED to cmSourceFilesRemoveCommand
Diffstat (limited to 'Tests/Complex/Library')
-rw-r--r-- | Tests/Complex/Library/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Complex/Library/CMakeLists.txt b/Tests/Complex/Library/CMakeLists.txt index 40b2f2d..798b6e1 100644 --- a/Tests/Complex/Library/CMakeLists.txt +++ b/Tests/Complex/Library/CMakeLists.txt @@ -1,8 +1,8 @@ AUX_SOURCE_DIRECTORY(ExtraSources LibrarySources) # SOURCE_FILES_REMOVE is used for Coverage -SOURCE_FILES(LibrarySources file2 create_file.cxx) -SOURCE_FILES_REMOVE(LibrarySources create_file.cxx) +SOURCE_FILES(LibrarySources file2 GENERATED nonexisting_file) +SOURCE_FILES_REMOVE(LibrarySources GENERATED nonexisting_file) ADD_LIBRARY(CMakeTestLibrary LibrarySources) SOURCE_FILES(SharedLibrarySources sharedFile) |