fix macos installer script
This commit is contained in:
parent
e6a3a124ee
commit
116a133902
|
@ -74,7 +74,7 @@ else()
|
||||||
set (BARRIER_VERSION_TAG "${BARRIER_VERSION_STAGE}")
|
set (BARRIER_VERSION_TAG "${BARRIER_VERSION_STAGE}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set (BARRIER_VERSION "${BARRIER_VERSION_MAJOR}.${BARRIER_VERSION_MINOR}.${BARRIER_VERSION_PATCH}")
|
set (BARRIER_VERSION "${BARRIER_VERSION_MAJOR}.${BARRIER_VERSION_MINOR}.${BARRIER_VERSION_PATCH}-${BARRIER_VERSION_STAGE}")
|
||||||
set (BARRIER_VERSION_STRING "${BARRIER_VERSION}-${BARRIER_VERSION_TAG}")
|
set (BARRIER_VERSION_STRING "${BARRIER_VERSION}-${BARRIER_VERSION_TAG}")
|
||||||
message (STATUS "Full Barrier version string is '" ${BARRIER_VERSION_STRING} "'")
|
message (STATUS "Full Barrier version string is '" ${BARRIER_VERSION_STRING} "'")
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ fi
|
||||||
|
|
||||||
cd @CMAKE_CURRENT_SOURCE_DIR@/build/bundle || exit 1
|
cd @CMAKE_CURRENT_SOURCE_DIR@/build/bundle || exit 1
|
||||||
|
|
||||||
B_REREF_SCRIPT=./reref_dylibs.sh
|
B_REREF_SCRIPT=@CMAKE_CURRENT_SOURCE_DIR@/reref_dylibs.sh
|
||||||
if [ ! -x $B_REREF_SCRIPT ]; then
|
if [ ! -x $B_REREF_SCRIPT ]; then
|
||||||
echo Missing script: $B_REREF_SCRIPT
|
echo Missing script: $B_REREF_SCRIPT
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -35,7 +35,7 @@ mkdir MacOS || exit 1
|
||||||
cd MacOS || exit 1
|
cd MacOS || exit 1
|
||||||
|
|
||||||
# copy all executables
|
# copy all executables
|
||||||
cp @CMAKE_RUNTIME_OUTPUT_DIR@/* . || exit 1
|
cp @CMAKE_RUNTIME_OUTPUT_DIRECTORY@/* . || exit 1
|
||||||
|
|
||||||
# copy the qt platform plugin
|
# copy the qt platform plugin
|
||||||
# TODO: this is hacky and will probably break if there is more than one qt
|
# TODO: this is hacky and will probably break if there is more than one qt
|
||||||
|
|
Loading…
Reference in New Issue