From 8f0697c4f574e7dfe9d678ab5ccce1b28fd046de Mon Sep 17 00:00:00 2001 From: David Cole Date: Wed, 2 Aug 2006 12:51:40 -0400 Subject: COMP: libtar should build when included in non-CMake projects... --- Utilities/cmtar/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Utilities/cmtar/CMakeLists.txt b/Utilities/cmtar/CMakeLists.txt index 8a892bc..462ac80 100644 --- a/Utilities/cmtar/CMakeLists.txt +++ b/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) -- cgit v0.12