summary refs log tree commit diff
path: root/.ci
diff options
context:
space:
mode:
authorJoseph Donofry <rubberduckie3554@gmail.com>2023-06-15 19:08:22 -0400
committerJoseph Donofry <rubberduckie3554@gmail.com>2023-06-15 19:16:50 -0400
commit024486c989eca3a7ae679ddd6bd3dd00a7aad94d (patch)
tree2f8cd7132f5ed37c9b80844db322fb45a9602954 /.ci
parentTranslated using Weblate (Estonian) (diff)
downloadnheko-024486c989eca3a7ae679ddd6bd3dd00a7aad94d.tar.xz
Maybe fix macOS deployment (intel for now)
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/macos/build.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/.ci/macos/build.sh b/.ci/macos/build.sh
index 1c60015e..18d7912b 100755
--- a/.ci/macos/build.sh
+++ b/.ci/macos/build.sh
@@ -14,7 +14,7 @@ export CMAKE_PREFIX_PATH
 
 cmake -GNinja -S. -Bbuild \
       -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-      -DCMAKE_INSTALL_PREFIX=.deps/usr \
+      -DCMAKE_INSTALL_PREFIX="$(pwd)" \
       -DHUNTER_ROOT="../.hunter" \
       -DHUNTER_ENABLED=ON -DBUILD_SHARED_LIBS=OFF \
       -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHUNTER_CONFIGURATION_TYPES=RelWithDebInfo \
@@ -28,7 +28,8 @@ cmake --build build
     make -j 4
     cp libqtjdenticon.dylib ../nheko.app/Contents/MacOS
   )
-  "$(brew --prefix qt6)/bin/macdeployqt" nheko.app -always-overwrite -qmldir=../resources/qml/
-  # workaround for https://bugreports.qt.io/browse/QTBUG-100686
-  cp "$(brew --prefix brotli)/lib/libbrotlicommon.1.dylib" nheko.app/Contents/Frameworks/libbrotlicommon.1.dylib
+  # "$(brew --prefix qt6)/bin/macdeployqt" nheko.app -always-overwrite -qmldir=../resources/qml/
+  # # workaround for https://bugreports.qt.io/browse/QTBUG-100686
+  # cp "$(brew --prefix brotli)/lib/libbrotlicommon.1.dylib" nheko.app/Contents/Frameworks/libbrotlicommon.1.dylib
+  cmake --install build
 )