diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-08-01 15:58:47 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-08-01 15:58:47 (GMT) |
commit | 4228cd1ecf7438d8cdc8ae57d45aa1c0d66e2bb5 (patch) | |
tree | f470233268c36fa763eabf3c9c846b96bcc4de7f /CMakeLists.txt | |
parent | 64a45a34bda6eeb962a32a6b901c86b4de34ebff (diff) | |
download | CMake-4228cd1ecf7438d8cdc8ae57d45aa1c0d66e2bb5.zip CMake-4228cd1ecf7438d8cdc8ae57d45aa1c0d66e2bb5.tar.gz CMake-4228cd1ecf7438d8cdc8ae57d45aa1c0d66e2bb5.tar.bz2 |
made more options advanced
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ca9512..1955557 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,6 @@ PROJECT(CMake) +CMAKE_MINIMUM_REQUIRED(VERSION 1.6) +MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY) # The CMake version number. SET(CMake_VERSION_MAJOR 1) @@ -77,10 +79,15 @@ IF(BUILD_TESTING) CONFIGURE_FILE(${CMake_SOURCE_DIR}/CMakeLogo.gif ${CMake_BINARY_DIR}/Testing/HTML/TestingResults/Icons/Logo.gif COPYONLY) ENDIF (DART_ROOT) ENDIF(BUILD_TESTING) +MARK_AS_ADVANCED(DART_ROOT) +MARK_AS_ADVANCED(CURL_TESTING) -SET(EXECUTABLE_OUTPUT_PATH ${CMake_BINARY_DIR}/bin CACHE PATH +SET(EXECUTABLE_OUTPUT_PATH ${CMake_BINARY_DIR}/bin CACHE INTERNAL "Where to put the executables for CMake" ) +SET(LIBRARY_OUTPUT_PATH ${CMake_BINARY_DIR}/bin CACHE INTERNAL + "Where to put the libraries for CMake" +) INCLUDE_REGULAR_EXPRESSION("^(\\.\\./)?(cm|CMake|form|ctest).*") |