diff options
author | Joseph Donofry <rubberduckie3554@gmail.com> | 2023-06-15 19:49:47 -0400 |
---|---|---|
committer | Joseph Donofry <rubberduckie3554@gmail.com> | 2023-06-15 19:49:47 -0400 |
commit | ed5c29bb396e6d04a116991d7f62996bcfaa0610 (patch) | |
tree | c5582f98c896ac63ea7d93e20db35c37da833552 | |
parent | Maybe fix macOS deployment (intel for now) (diff) | |
download | nheko-ed5c29bb396e6d04a116991d7f62996bcfaa0610.tar.xz |
Update install prefix
-rwxr-xr-x | .ci/macos/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/macos/build.sh b/.ci/macos/build.sh index 18d7912b..18340258 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="$(pwd)" \ + -DCMAKE_INSTALL_PREFIX="nheko.app" \ -DHUNTER_ROOT="../.hunter" \ -DHUNTER_ENABLED=ON -DBUILD_SHARED_LIBS=OFF \ -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHUNTER_CONFIGURATION_TYPES=RelWithDebInfo \ @@ -31,5 +31,5 @@ cmake --build build # "$(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 + cmake --install . ) |