diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-06-04 22:12:16 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-06-04 22:12:16 (GMT) |
commit | 3545645c1b01f609496a4fc41e20419dedbbd98d (patch) | |
tree | ec07ad05a19b4617fa8de29458678657ae5cbb51 /Tests | |
parent | fbaddf4e403af327d263e347e666396a08fbdd10 (diff) | |
download | CMake-3545645c1b01f609496a4fc41e20419dedbbd98d.zip CMake-3545645c1b01f609496a4fc41e20419dedbbd98d.tar.gz CMake-3545645c1b01f609496a4fc41e20419dedbbd98d.tar.bz2 |
Exclude the CompileCommandOutput test on WIN32.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index ffa5bcb..ef707e4 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -47,7 +47,7 @@ CONFIGURE_FILE(${CMake_SOURCE_DIR}/Tests/EnforceConfig.cmake.in # Testing IF(BUILD_TESTING) - IF("${CMAKE_TEST_GENERATOR}" MATCHES "Unix Makefiles" OR "${CMAKE_TEST_GENERATOR}" MATCHES Ninja) + IF("${CMAKE_TEST_GENERATOR}" MATCHES "Unix Makefiles" OR ("${CMAKE_TEST_GENERATOR}" MATCHES Ninja AND NOT WIN32)) SET(TEST_CompileCommandOutput 1) ENDIF() |