diff options
author | Peter Kümmel <syntheticpp@gmx.net> | 2012-07-18 07:51:43 (GMT) |
---|---|---|
committer | Peter Kümmel <syntheticpp@gmx.net> | 2012-07-18 07:51:43 (GMT) |
commit | 207ec5c3b13726bbb61d29bb1191ddbe992f8c1c (patch) | |
tree | d65c9615cf04defc96912cd9f29186d25ae31e49 /Tests/BuildDepends | |
parent | 392a6541b51dac5080a32fde67bc8aefd92a7226 (diff) | |
download | CMake-207ec5c3b13726bbb61d29bb1191ddbe992f8c1c.zip CMake-207ec5c3b13726bbb61d29bb1191ddbe992f8c1c.tar.gz CMake-207ec5c3b13726bbb61d29bb1191ddbe992f8c1c.tar.bz2 |
Ninja: fix mis-matching endif() argument
Diffstat (limited to 'Tests/BuildDepends')
-rw-r--r-- | Tests/BuildDepends/Project/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/BuildDepends/Project/CMakeLists.txt b/Tests/BuildDepends/Project/CMakeLists.txt index e97b661..ed8b8bf 100644 --- a/Tests/BuildDepends/Project/CMakeLists.txt +++ b/Tests/BuildDepends/Project/CMakeLists.txt @@ -26,7 +26,7 @@ if(APPLE) # Arch 'ppc' no longer works: tools no longer available starting with Xcode 4 set(CMAKE_OSX_ARCHITECTURES i386 x86_64) endif() - endif(EXISTS "${CMAKE_OSX_SYSROOT}") + endif() endif(APPLE) add_library(foo STATIC ${testRebuild_BINARY_DIR}/foo.cxx) |