Browse Source

chore(CI): Add support for building qrencode for macOS

CMAKE_OSX_DEPLOYMENT_TARGET has no effect when not building for macOS.
reviewable/pr6579/r10
Anthony Bilinski 3 years ago
parent
commit
02f384a7d2
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 3
      buildscripts/build_qrencode.sh

3
buildscripts/build_qrencode.sh

@ -10,13 +10,14 @@ readonly SCRIPT_DIR="$(dirname "$(realpath "$0")")" @@ -10,13 +10,14 @@ readonly SCRIPT_DIR="$(dirname "$(realpath "$0")")"
source "${SCRIPT_DIR}/build_utils.sh"
parse_arch --dep "qrencode" --supported "win32 win64" "$@"
parse_arch --dep "qrencode" --supported "win32 win64 macos" "$@"
"${SCRIPT_DIR}/download/download_qrencode.sh"
cmake . \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="${DEP_PREFIX}" \
"-DCMAKE_OSX_DEPLOYMENT_TARGET=${MACOS_MINIMUM_SUPPORTED_VERSION}" \
"${CMAKE_TOOLCHAIN_FILE}" \
-DWITH_TOOLS=OFF \
-DBUILD_SHARED_LIBS=ON

Loading…
Cancel
Save