Genex: Evaluate genexes for additional make clean files.
This is necessary because custom commands and targets may create custom files whose names are determined by generator expressions. For example, clang should be using $<TARGET_FILE> and $<TARGET_FILE_DIR> instead of reverse engineering the output file name: http://thread.gmane.org/gmane.comp.compilers.clang.scm/80523 However, that can only be done when ADDITIONAL_MAKE_CLEAN_FILES also accepts and evaluates generator expressions. Similarly, KDE uses the LOCATION property where $<TARGET_FILE> would also be better in KDE4_HANDLE_RPATH_FOR_EXECUTABLE but also appends the result to ADDITIONAL_MAKE_CLEAN_FILES. After this patch, both can be ported to generator expressions.
This commit is contained in:
parent
b15ad0d1de
commit
d26594f390
|
@ -21,6 +21,7 @@
|
|||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
#include "cmComputeLinkInformation.h"
|
||||
#include "cmGeneratorExpression.h"
|
||||
|
||||
#include "cmMakefileExecutableTargetGenerator.h"
|
||||
#include "cmMakefileLibraryTargetGenerator.h"
|
||||
|
@ -131,7 +132,14 @@ void cmMakefileTargetGenerator::WriteTargetBuildRules()
|
|||
this->Makefile->GetProperty
|
||||
("ADDITIONAL_MAKE_CLEAN_FILES"))
|
||||
{
|
||||
cmSystemTools::ExpandListArgument(additional_clean_files,
|
||||
const char *config = this->Makefile->GetDefinition("CMAKE_BUILD_TYPE");
|
||||
cmListFileBacktrace lfbt;
|
||||
cmGeneratorExpression ge(lfbt);
|
||||
cmsys::auto_ptr<cmCompiledGeneratorExpression> cge =
|
||||
ge.Parse(additional_clean_files);
|
||||
|
||||
cmSystemTools::ExpandListArgument(cge->Evaluate(this->Makefile, config,
|
||||
false, this->Target, 0, 0),
|
||||
this->CleanFiles);
|
||||
}
|
||||
|
||||
|
|
|
@ -26,6 +26,18 @@ add_custom_command(OUTPUT ${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")
|
||||
|
||||
# Create a custom command whose output should be cleaned, but whose name
|
||||
# is not known until generate-time
|
||||
set(copied_exe "$<TARGET_FILE_DIR:toclean>/toclean_copy${CMAKE_EXECUTABLE_SUFFIX}")
|
||||
add_custom_command(TARGET toclean POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND}
|
||||
ARGS -E copy $<TARGET_FILE:toclean>
|
||||
${copied_exe}
|
||||
)
|
||||
set_property(DIRECTORY APPEND PROPERTY
|
||||
ADDITIONAL_MAKE_CLEAN_FILES ${copied_exe})
|
||||
list(APPEND TOCLEAN_FILES "${ToClean_BINARY_DIR}/toclean_copy${CMAKE_EXECUTABLE_SUFFIX}")
|
||||
|
||||
# Configure a file listing these build-time-generated files.
|
||||
configure_file(${ToClean_SOURCE_DIR}/ToCleanFiles.cmake.in
|
||||
${ToClean_BINARY_DIR}/ToCleanFiles.cmake @ONLY IMMEDIATE)
|
||||
|
|
Loading…
Reference in New Issue