Pārlūkot izejas kodu

Make cmake build again with cmake < 2.6.3

cmake_minimum_required() still says 2.4.5, but in Tests/CMakeLists.txt
there was a parenthesis expression, which is new since 2.6.3.

Alex
Alex Neundorf 15 gadi atpakaļ
vecāks
revīzija
ccbdc24ae1
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      Tests/CMakeLists.txt

+ 2 - 2
Tests/CMakeLists.txt

@@ -138,8 +138,8 @@ IF(BUILD_TESTING)
     SET(TEST_RESOURCES TRUE)
   ENDIF()
   # for borland and watcom there is no resource support
-  IF(("${CMAKE_TEST_GENERATOR}" MATCHES "WMake") OR
-      ("${CMAKE_TEST_GENERATOR}" MATCHES "Borland"))
+  IF("${CMAKE_TEST_GENERATOR}" MATCHES "WMake" OR
+      "${CMAKE_TEST_GENERATOR}" MATCHES "Borland")
     SET(TEST_RESOURCES FALSE)
   ENDIF()
   IF(TEST_RESOURCES)