Skip to content

Commit

Permalink
fix macos build
Browse files Browse the repository at this point in the history
  • Loading branch information
rectalogic committed Dec 12, 2023
1 parent 21bd487 commit cd0f5b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions builders/Darwin/install-qt6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ set -u
CURRENT=$(dirname "${BASH_SOURCE[0]}")
source "$CURRENT/../versions"
(
mkdir -p "$BUILD_ROOT"/Darwin && cd "$BUILD_ROOT"/Darwin
mkdir -p "${BUILD_ROOT:?}/Darwin" && cd "$BUILD_ROOT/Darwin"
python3 -m venv --clear "build/qtvenv" || exit 1
"build/qtvenv/bin/pip" install --upgrade --upgrade-strategy eager aqtinstall || exit 1
"build/qtvenv/bin/python" -m aqt install-qt mac desktop ${QT_VER} --modules qtmultimedia qtquick3d qtshadertools qtquicktimeline qtquickeffectmaker -O "$BUILD_ROOT/installed" || exit 1
"build/qtvenv/bin/python" -m aqt install-tool mac desktop tools_qtcreator_preview preview.qt.tools.qtcreator -O "$BUILD_ROOT/installed/${QT_VER}/macos/bin" || exit 1
"build/qtvenv/bin/python" -m aqt install-src mac desktop ${QT_VER} --archives qtbase qtdeclarative qtmultimedia qtquicktimeline -O "$BUILD_ROOT/installed" || exit 1
"build/qtvenv/bin/python" -m aqt install-qt mac desktop ${QT_VER} --modules qtmultimedia qtquick3d qtshadertools qtquicktimeline qtquickeffectmaker -O "$BUILD_ROOT/Darwin/installed" || exit 1
"build/qtvenv/bin/python" -m aqt install-tool mac desktop tools_qtcreator_preview preview.qt.tools.qtcreator -O "$BUILD_ROOT/Darwin/installed/${QT_VER}/macos/bin" || exit 1
"build/qtvenv/bin/python" -m aqt install-src mac desktop ${QT_VER} --archives qtbase qtdeclarative qtmultimedia qtquicktimeline -O "$BUILD_ROOT/Darwin/installed" || exit 1
)

0 comments on commit cd0f5b6

Please sign in to comment.