Disable Qt build in make-app-release

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-24 21:22:11 -07:00
parent 8712ea673d
commit 0585edad9e

View File

@@ -15,20 +15,18 @@ sha256sum kge.app.zip
open . open .
cd .. cd ..
mkdir -p cmake-build-release-qt # Qt build disabled — ImGui frontend is the primary GUI.
cmake -S . -B cmake-build-release-qt -DBUILD_GUI=ON -DKTE_USE_QT=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_ASAN=OFF # mkdir -p cmake-build-release-qt
# cmake -S . -B cmake-build-release-qt -DBUILD_GUI=ON -DKTE_USE_QT=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_ASAN=OFF
cd cmake-build-release-qt #
make clean # cd cmake-build-release-qt
rm -fr kge.app* kge-qt.app* # make clean
make # rm -fr kge.app* kge-qt.app*
mv -f kge.app kge-qt.app # make
# Use the same Qt's macdeployqt as used for building; ensure it overwrites in-bundle paths # mv -f kge.app kge-qt.app
macdeployqt kge-qt.app -always-overwrite -verbose=3 # macdeployqt kge-qt.app -always-overwrite -verbose=3
# cmake -DAPP_BUNDLE="$(pwd)/kge-qt.app" -P "${PWD%/*}/cmake/fix_bundle.cmake"
# Run CMake BundleUtilities fixup to internalize non-Qt dylibs and rewrite install names # zip -r kge-qt.app.zip kge-qt.app
cmake -DAPP_BUNDLE="$(pwd)/kge-qt.app" -P "${PWD%/*}/cmake/fix_bundle.cmake" # sha256sum kge-qt.app.zip
zip -r kge-qt.app.zip kge-qt.app # open .
sha256sum kge-qt.app.zip # cd ..
open .
cd ..