From 0585edad9ef28e971c8fb5dc08b92ae9e930a110 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Tue, 24 Mar 2026 21:22:11 -0700 Subject: [PATCH] Disable Qt build in make-app-release Co-Authored-By: Claude Opus 4.6 (1M context) --- make-app-release | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/make-app-release b/make-app-release index 454b50b..57c2566 100755 --- a/make-app-release +++ b/make-app-release @@ -15,20 +15,18 @@ sha256sum kge.app.zip open . cd .. -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 -rm -fr kge.app* kge-qt.app* -make -mv -f kge.app kge-qt.app -# Use the same Qt's macdeployqt as used for building; ensure it overwrites in-bundle paths -macdeployqt kge-qt.app -always-overwrite -verbose=3 - -# Run CMake BundleUtilities fixup to internalize non-Qt dylibs and rewrite install names -cmake -DAPP_BUNDLE="$(pwd)/kge-qt.app" -P "${PWD%/*}/cmake/fix_bundle.cmake" -zip -r kge-qt.app.zip kge-qt.app -sha256sum kge-qt.app.zip -open . -cd .. +# Qt build disabled — ImGui frontend is the primary GUI. +# 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 +# rm -fr kge.app* kge-qt.app* +# make +# mv -f kge.app kge-qt.app +# macdeployqt kge-qt.app -always-overwrite -verbose=3 +# cmake -DAPP_BUNDLE="$(pwd)/kge-qt.app" -P "${PWD%/*}/cmake/fix_bundle.cmake" +# zip -r kge-qt.app.zip kge-qt.app +# sha256sum kge-qt.app.zip +# open . +# cd ..