1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

chore(CI): Add support for building msgpack-c for macOS

CMAKE_OSX_DEPLOYMENT_TARGET has no effect when not building for macOS.
This commit is contained in:
Anthony Bilinski 2022-03-16 01:57:39 -07:00
parent f9b8a8a05f
commit e6075c278d
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C

View File

@ -9,7 +9,7 @@ readonly SCRIPT_DIR="$(dirname "$(realpath "$0")")"
source "${SCRIPT_DIR}/build_utils.sh"
parse_arch --dep "msgpack-c" --supported "win32 win64" "$@"
parse_arch --dep "msgpack-c" --supported "win32 win64 macos" "$@"
"${SCRIPT_DIR}/download/download_msgpack_c.sh"
@ -19,6 +19,7 @@ cmake .\
"${CMAKE_TOOLCHAIN_FILE}" \
-DMSGPACK_BUILD_EXAMPLES=OFF \
-DMSGPACK_BUILD_TESTS=OFF \
"-DCMAKE_OSX_DEPLOYMENT_TARGET=${MACOS_MINIMUM_SUPPORTED_VERSION}" \
.
make -j "${MAKE_JOBS}"