diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-03-17 18:26:30 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-03-17 18:26:30 (GMT) |
commit | e92c98f4b014cec2ecd355d04dd34e88200c4676 (patch) | |
tree | 476bb69d9570b19cbb13581f35097fed4b5d77b2 /Tests/Simple/CMakeLists.txt | |
parent | 889a1194740569428674bf926940adc9d59b5d08 (diff) | |
download | CMake-e92c98f4b014cec2ecd355d04dd34e88200c4676.zip CMake-e92c98f4b014cec2ecd355d04dd34e88200c4676.tar.gz CMake-e92c98f4b014cec2ecd355d04dd34e88200c4676.tar.bz2 |
Add testing for when C sources are compiled with C++ compiler
Diffstat (limited to 'Tests/Simple/CMakeLists.txt')
-rw-r--r-- | Tests/Simple/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Simple/CMakeLists.txt b/Tests/Simple/CMakeLists.txt index d42728d..07a9039 100644 --- a/Tests/Simple/CMakeLists.txt +++ b/Tests/Simple/CMakeLists.txt @@ -1,5 +1,5 @@ # a simple test case PROJECT (simple) ADD_EXECUTABLE (simple simple.cxx) -ADD_LIBRARY(simpleLib STATIC simpleLib.cxx) +ADD_LIBRARY(simpleLib STATIC simpleLib.cxx simpleCLib.c) TARGET_LINK_LIBRARIES(simple simpleLib) |