mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Checkpoint
This commit is contained in:
parent
418b9c8fea
commit
ca8cd13c48
2 changed files with 12 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
macro(CONSOLIDATE_STACK_COMPONENTS)
|
||||
|
||||
if (DEFINED ENV{ghprbPullId})
|
||||
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
|
||||
|
|
|
@ -250,8 +250,18 @@ else ()
|
|||
)
|
||||
endif ()
|
||||
|
||||
|
||||
message(STATUS "++++++++++++++++++++++++++++")
|
||||
message(STATUS "${OPENSSL_LIBRARIES}")
|
||||
message(STATUS "${OPENSSL_DLL_PATH}")
|
||||
if (WIN32)
|
||||
add_paths_to_fixup_libs(${OPENSSL_DLL_PATH})
|
||||
if (DEFINED ENV{ghprbPullId})
|
||||
add_custom_command(
|
||||
TARGET ${TARGET_NAME} POST_BUILD
|
||||
COMMAND "${CMAKE_COMMAND}" -E copy ${OPENSSL_DLL_PATH}/ssleay32.dll ${CMAKE_BINARY_DIR}/full-stack-deployment
|
||||
)
|
||||
endif ()
|
||||
endif ()
|
||||
|
||||
mark_as_advanced(OPENSSL_INCLUDE_DIR OPENSSL_LIBRARIES OPENSSL_SEARCH_DIRS)
|
||||
|
|
Loading…
Reference in a new issue