diff options
author | Brad King <brad.king@kitware.com> | 2014-06-06 14:01:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-06 14:28:32 (GMT) |
commit | 0366ba5db62d99423e16c284cb7d4200d985ca1f (patch) | |
tree | 7904dd72aaaa3b21100a69263c91b0a814120ff5 /Tests/RunCMake/CMakeLists.txt | |
parent | 618b7df5bf7767561822c1673a9640860a2613a1 (diff) | |
download | CMake-0366ba5db62d99423e16c284cb7d4200d985ca1f.zip CMake-0366ba5db62d99423e16c284cb7d4200d985ca1f.tar.gz CMake-0366ba5db62d99423e16c284cb7d4200d985ca1f.tar.bz2 |
Tests: Fix RunCMake.TargetSources on Xcode 1.5
Xcode 1.5 does not support multiple configurations. The generator also
adds some sources internally that cause extra OriginDebug output.
Update the expected output to tolerate it.
Diffstat (limited to 'Tests/RunCMake/CMakeLists.txt')
-rw-r--r-- | Tests/RunCMake/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt index d5af542..06272ce 100644 --- a/Tests/RunCMake/CMakeLists.txt +++ b/Tests/RunCMake/CMakeLists.txt @@ -16,6 +16,10 @@ if(XCODE_VERSION AND "${XCODE_VERSION}" VERSION_LESS 3) set(GeneratorToolset_ARGS -DXCODE_BELOW_3=1) endif() +if(XCODE_VERSION AND "${XCODE_VERSION}" VERSION_LESS 2) + set(TargetSources_ARGS -DXCODE_BELOW_2=1) +endif() + add_RunCMake_test(CMP0019) add_RunCMake_test(CMP0022) add_RunCMake_test(CMP0026) |