Browse Source

COMP: libtar should build when included in non-CMake projects...

David Cole 19 years ago
parent
commit
8f0697c4f5
1 changed files with 5 additions and 1 deletions
  1. 5 1
      Utilities/cmtar/CMakeLists.txt

+ 5 - 1
Utilities/cmtar/CMakeLists.txt

@@ -254,7 +254,11 @@ int main ()
 ")
 # get this from the source tree since it was not in the previous
 # version of cmake and cmake need to build cmake
-INCLUDE(${CMake_SOURCE_DIR}/Modules/CheckCSourceCompiles.cmake)
+IF("${CMake_SOURCE_DIR}" STREQUAL "")
+  INCLUDE(CheckCSourceCompiles)
+ELSE("${CMake_SOURCE_DIR}" STREQUAL "")
+  INCLUDE(${CMake_SOURCE_DIR}/Modules/CheckCSourceCompiles.cmake)
+ENDIF("${CMake_SOURCE_DIR}" STREQUAL "")
 CHECK_C_SOURCE_COMPILES("${CMAKE_MAKEDEV_SOURCE}" MAKEDEV_THREE_ARGS)
 #SET (MAKEDEV_THREE_ARGS 0)
 #SET (NEED_BASENAME 0)