We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c63e779 + 2b09460 commit 2a0b135Copy full SHA for 2a0b135
SerialPrograms/CMakeLists.txt
@@ -57,7 +57,11 @@ else()
57
endif()
58
59
if(PACKAGE_BUILD)
60
- set(DEST_DIR "$<TARGET_FILE_DIR:SerialPrograms>/Output")
+ if(APPLE)
61
+ set(DEST_DIR "$<TARGET_FILE_DIR:SerialPrograms>/../")
62
+ else()
63
+ set(DEST_DIR "$<TARGET_FILE_DIR:SerialPrograms>/Output")
64
+ endif()
65
set(DEPLOY_DIR "${DEST_DIR}/Binaries64")
66
else()
67
set(DEST_DIR "$<TARGET_FILE_DIR:SerialPrograms>")
0 commit comments