diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-08-01 20:01:44 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-08-01 20:01:44 (GMT) |
commit | 2350085120bd0b50cf9c61c4b073126735426cb7 (patch) | |
tree | 8bb8adf04a71df36139d2f29cd164fa114d805e1 /Utilities/cmtar | |
parent | 89fb18f54894446270df5de761b8a91854817745 (diff) | |
download | CMake-2350085120bd0b50cf9c61c4b073126735426cb7.zip CMake-2350085120bd0b50cf9c61c4b073126735426cb7.tar.gz CMake-2350085120bd0b50cf9c61c4b073126735426cb7.tar.bz2 |
ENH: make cmake build with older versions of cmake
Diffstat (limited to 'Utilities/cmtar')
-rw-r--r-- | Utilities/cmtar/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Utilities/cmtar/CMakeLists.txt b/Utilities/cmtar/CMakeLists.txt index 39910a5..8a892bc 100644 --- a/Utilities/cmtar/CMakeLists.txt +++ b/Utilities/cmtar/CMakeLists.txt @@ -252,7 +252,9 @@ int main () return 0; } ") -INCLUDE(CheckCSourceCompiles) +# 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) CHECK_C_SOURCE_COMPILES("${CMAKE_MAKEDEV_SOURCE}" MAKEDEV_THREE_ARGS) #SET (MAKEDEV_THREE_ARGS 0) #SET (NEED_BASENAME 0) |