diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2007-05-16 11:56:56 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2007-05-16 11:56:56 (GMT) |
commit | 27727a2bbaddf829148e201b2c10903a2a1be01f (patch) | |
tree | 10e78da8fa3feda65b09988590d3895b8b88f6c2 /Tests/BuildDepends | |
parent | 9338803697da3623a61631809898af2334e38c48 (diff) | |
download | CMake-27727a2bbaddf829148e201b2c10903a2a1be01f.zip CMake-27727a2bbaddf829148e201b2c10903a2a1be01f.tar.gz CMake-27727a2bbaddf829148e201b2c10903a2a1be01f.tar.bz2 |
BUG: check in the rest of the changes to move from c to cxx
Diffstat (limited to 'Tests/BuildDepends')
-rw-r--r-- | Tests/BuildDepends/Project/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/BuildDepends/Project/CMakeLists.txt b/Tests/BuildDepends/Project/CMakeLists.txt index 2546038..f9cbc56 100644 --- a/Tests/BuildDepends/Project/CMakeLists.txt +++ b/Tests/BuildDepends/Project/CMakeLists.txt @@ -1,4 +1,4 @@ project(testRebuild) -add_library(foo STATIC ${testRebuild_BINARY_DIR}/foo.c) -add_executable(bar bar.c) +add_library(foo STATIC ${testRebuild_BINARY_DIR}/foo.cxx) +add_executable(bar bar.cxx) target_link_libraries(bar foo) |