diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-05-11 14:22:20 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-05-11 14:22:20 (GMT) |
commit | 2208231aac6e5702d7143cc8de1836f7d02d9987 (patch) | |
tree | b5d5a5e08aa2fab11c41243fb2274d00d3f2dd28 /Tests/CxxOnly | |
parent | 0f0a83a51f8f05636fe33d17d4f21c92e42a06d8 (diff) | |
download | CMake-2208231aac6e5702d7143cc8de1836f7d02d9987.zip CMake-2208231aac6e5702d7143cc8de1836f7d02d9987.tar.gz CMake-2208231aac6e5702d7143cc8de1836f7d02d9987.tar.bz2 |
ENH: some more CMakeList cleanups
Diffstat (limited to 'Tests/CxxOnly')
-rw-r--r-- | Tests/CxxOnly/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CxxOnly/CMakeLists.txt b/Tests/CxxOnly/CMakeLists.txt index cf31474..bfc8271 100644 --- a/Tests/CxxOnly/CMakeLists.txt +++ b/Tests/CxxOnly/CMakeLists.txt @@ -1,8 +1,8 @@ # a simple CXX only test case -project (cxxonly CXX) +project (CxxOnly CXX) set(CMAKE_DEBUG_POSTFIX "_test_debug_postfix") add_library(testcxx1 STATIC libcxx1.cxx) add_library(testcxx2 SHARED libcxx2.cxx) -add_executable (cxxonly cxxonly.cxx) -target_link_libraries(cxxonly testcxx1 testcxx2) +add_executable (CxxOnly cxxonly.cxx) +target_link_libraries(CxxOnly testcxx1 testcxx2) |