mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
11 lines
No EOL
364 B
CMake
11 lines
No EOL
364 B
CMake
macro(CONSOLIDATE_STACK_COMPONENTS)
|
|
|
|
if (DEFINED ENV{ghprbPullId})
|
|
# Copy all the output for this target into the common deployment location
|
|
add_custom_command(
|
|
TARGET ${TARGET_NAME} POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}" -E copy_directory $<TARGET_FILE_DIR:${TARGET_NAME}> ${CMAKE_BINARY_DIR}/full-stack-deployment
|
|
)
|
|
endif ()
|
|
|
|
endmacro() |