diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2002-01-20 06:58:57 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2002-01-20 06:58:57 (GMT) |
commit | 6f3570656caf463addeb9edafcecba33f0efcbb9 (patch) | |
tree | d7c00a97f0216851a1adc583ec0ed737b3e99e8e /Tests/Complex/Library | |
parent | f04128ad63b560079ab49118b9e64e2fe73ba39b (diff) | |
download | CMake-6f3570656caf463addeb9edafcecba33f0efcbb9.zip CMake-6f3570656caf463addeb9edafcecba33f0efcbb9.tar.gz CMake-6f3570656caf463addeb9edafcecba33f0efcbb9.tar.bz2 |
Increase Coverage.
Diffstat (limited to 'Tests/Complex/Library')
-rw-r--r-- | Tests/Complex/Library/CMakeLists.txt | 9 | ||||
-rw-r--r-- | Tests/Complex/Library/empty.h | 1 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Tests/Complex/Library/CMakeLists.txt b/Tests/Complex/Library/CMakeLists.txt index aaa11ca..1445ccc 100644 --- a/Tests/Complex/Library/CMakeLists.txt +++ b/Tests/Complex/Library/CMakeLists.txt @@ -8,10 +8,15 @@ ADD_EXECUTABLE(create_file create_file.cxx) # # Create static library -# SOURCE_FILES_REMOVE is used for Coverage +# SOURCE_FILES_REMOVE is used for Coverage. empty.h is included for coverage # AUX_SOURCE_DIRECTORY(ExtraSources LibrarySources) -SOURCE_FILES(LibrarySources file2 create_file.cxx GENERATED nonexisting_file) +SOURCE_FILES(LibrarySources + file2 + empty + create_file.cxx + GENERATED + nonexisting_file) SOURCE_FILES_REMOVE(LibrarySources create_file.cxx GENERATED nonexisting_file) ADD_LIBRARY(CMakeTestLibrary LibrarySources) diff --git a/Tests/Complex/Library/empty.h b/Tests/Complex/Library/empty.h new file mode 100644 index 0000000..dea4b80 --- /dev/null +++ b/Tests/Complex/Library/empty.h @@ -0,0 +1 @@ +int file2(); |