ENH: Simpler AddExternalProject build step
This simplifies the implementation with add_external_project_step.
This commit is contained in:
parent
f3ba510a65
commit
bf09570615
@ -506,30 +506,17 @@ function(add_external_project_build_command name)
|
|||||||
sentinels_dir source_dir tmp_dir)
|
sentinels_dir source_dir tmp_dir)
|
||||||
get_configure_build_working_dir(${name} working_dir)
|
get_configure_build_working_dir(${name} working_dir)
|
||||||
|
|
||||||
get_target_property(cmd ${name} AEP_BUILD_COMMAND)
|
get_property(cmd_set TARGET ${name} PROPERTY AEP_BUILD_COMMAND SET)
|
||||||
if(cmd STREQUAL "")
|
if(cmd_set)
|
||||||
# Explicit empty string means no build step for this project
|
get_property(cmd TARGET ${name} PROPERTY AEP_BUILD_COMMAND)
|
||||||
add_custom_command(
|
|
||||||
OUTPUT ${sentinels_dir}/${name}-build
|
|
||||||
COMMAND ${CMAKE_COMMAND} -E touch ${sentinels_dir}/${name}-build
|
|
||||||
WORKING_DIRECTORY ${working_dir}
|
|
||||||
COMMENT "No build step for '${name}'"
|
|
||||||
DEPENDS ${sentinels_dir}/${name}-configure
|
|
||||||
VERBATIM
|
|
||||||
)
|
|
||||||
else()
|
else()
|
||||||
_aep_get_build_command(${name} BUILD cmd)
|
_aep_get_build_command(${name} BUILD cmd)
|
||||||
|
|
||||||
add_custom_command(
|
|
||||||
OUTPUT ${sentinels_dir}/${name}-build
|
|
||||||
COMMAND ${cmd}
|
|
||||||
COMMAND ${CMAKE_COMMAND} -E touch ${sentinels_dir}/${name}-build
|
|
||||||
WORKING_DIRECTORY ${working_dir}
|
|
||||||
COMMENT "Performing build step for '${name}'"
|
|
||||||
DEPENDS ${sentinels_dir}/${name}-configure
|
|
||||||
VERBATIM
|
|
||||||
)
|
|
||||||
endif()
|
endif()
|
||||||
|
add_external_project_step(${name} build
|
||||||
|
COMMAND ${cmd}
|
||||||
|
WORKING_DIRECTORY ${working_dir}
|
||||||
|
DEPENDEES configure
|
||||||
|
)
|
||||||
endfunction(add_external_project_build_command)
|
endfunction(add_external_project_build_command)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user