Merge pull request #14304 from hugueskamba/hk_cmake_remove_app_target_reference

CMake: Refactor post-build hook to remove APP_TARGET references
pull/14350/head
Martin Kojtal 2021-02-25 10:41:44 +00:00 committed by GitHub
commit 7da6100ff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 13 deletions

View File

@ -186,11 +186,13 @@ function(mbed_generate_bin_hex target)
)
if(TARGET mbed-post-build-bin-${MBED_TARGET})
add_custom_target(mbed-post-build
ALL
DEPENDS
mbed-post-build-bin-${MBED_TARGET}
)
# The artefacts must be created before they can be further manipulated
add_dependencies(mbed-post-build-bin-${MBED_TARGET} ${target})
# Add a post-build hook to the top-level CMake target in the form of a
# CMake custom target. The hook depends on Mbed target specific
# post-build CMake target which has a custom command attached to it.
add_custom_target(mbed-post-build ALL DEPENDS mbed-post-build-bin-${MBED_TARGET})
endif()
endfunction()

View File

@ -6,16 +6,11 @@
#
macro(mbed_set_post_build_operation)
add_custom_target(mbed-post-build-bin-${mbed_target_name}
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${APP_TARGET}.bin
)
# Ensures the application artefacts are created before manipulating them.
add_dependencies(mbed-post-build-bin-${mbed_target_name} ${APP_TARGET})
add_custom_target(mbed-post-build-bin-${mbed_target_name})
add_custom_command(
OUTPUT
${CMAKE_CURRENT_BINARY_DIR}/${APP_TARGET}.bin
TARGET
mbed-post-build-bin-${mbed_target_name}
POST_BUILD
COMMAND
${post_build_command}