mirror of
https://github.com/lubosz/overte.git
synced 2025-05-27 20:51:31 +02:00
11 lines
No EOL
374 B
CMake
11 lines
No EOL
374 B
CMake
macro(CONSOLIDATE_STACK_COMPONENTS)
|
|
|
|
if (DEFINED ENV{ghprbPullId} AND WIN32)
|
|
# 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() |