5233b75a77
- Remove CMP_0001 (no slash in target name) and restore old CMAKE_BACKWARDS_COMPATIBILITY check for it - Replace all checks of CMAKE_BACKWARDS_COMPATIBILITY with cmLocalGenerator::NeedBackwardsCompatibility calls - Create new CMP_0001 to determine whether or not CMAKE_BACKWARDS_COMPATIBILITY is used. (old = use, new = ignore) - Show CMAKE_BACKWARDS_COMPATIBILITY in cache only when CMP_0001 is set to OLD or WARN - Update documentation of cmake_policy and cmake_minimum_required to indicate their relationship and the 2.4 version boundary - When no cmake policy version is set in top level makefile implicitly call cmake_policy(VERSION 2.4) which restores CMAKE_BACKWARDS_COMPATIBILITY and other 2.4 compatibility - Fix tests MakeClean and Preprocess to call cmake_policy(VERSION 2.6) because they depend on new policies
32 lines
1.3 KiB
CMake
32 lines
1.3 KiB
CMake
cmake_policy(VERSION 2.6)
|
|
PROJECT(ToClean)
|
|
|
|
# Build a simple project.
|
|
ADD_EXECUTABLE(toclean toclean.cxx)
|
|
|
|
# List some build-time-generated files.
|
|
GET_TARGET_PROPERTY(TOCLEAN_FILES toclean LOCATION)
|
|
SET(TOCLEAN_FILES ${TOCLEAN_FILES}
|
|
"${ToClean_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/toclean.dir/toclean.cxx${CMAKE_CXX_OUTPUT_EXTENSION}")
|
|
|
|
# Create a file that must be registered for cleaning.
|
|
FILE(WRITE "${ToClean_BINARY_DIR}/Registered.txt"
|
|
"File registered for cleaning.\n")
|
|
SET_DIRECTORY_PROPERTIES(PROPERTIES
|
|
ADDITIONAL_MAKE_CLEAN_FILES "${ToClean_BINARY_DIR}/Registered.txt")
|
|
SET(TOCLEAN_FILES ${TOCLEAN_FILES} "${ToClean_BINARY_DIR}/Registered.txt")
|
|
|
|
# Create a custom command whose output should be cleaned.
|
|
ADD_CUSTOM_COMMAND(OUTPUT ${ToClean_BINARY_DIR}/generated.txt
|
|
DEPENDS ${ToClean_SOURCE_DIR}/toclean.cxx
|
|
COMMAND ${CMAKE_COMMAND}
|
|
ARGS -E copy ${ToClean_SOURCE_DIR}/toclean.cxx
|
|
${ToClean_BINARY_DIR}/generated.txt
|
|
)
|
|
ADD_CUSTOM_TARGET(generate ALL DEPENDS ${ToClean_BINARY_DIR}/generated.txt)
|
|
SET(TOCLEAN_FILES ${TOCLEAN_FILES} "${ToClean_BINARY_DIR}/generated.txt")
|
|
|
|
# Configure a file listing these build-time-generated files.
|
|
CONFIGURE_FILE(${ToClean_SOURCE_DIR}/ToCleanFiles.cmake.in
|
|
${ToClean_BINARY_DIR}/ToCleanFiles.cmake @ONLY IMMEDIATE)
|