diff options
author | Petr Mrázek <peterix@users.noreply.github.com> | 2021-11-30 20:24:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 20:24:19 +0100 |
commit | ffcef673de9fe848a92d23e02a2abed8df16eb9f (patch) | |
tree | b9761e7b4f9795b82d2f69e534c188ee3f30ed19 | |
parent | 241086883ef4b3c653c79963c42effc00fd5b2da (diff) | |
parent | 20eada7bbe340cd44056dc6778d775493ae2cf7e (diff) | |
download | PrismLauncher-ffcef673de9fe848a92d23e02a2abed8df16eb9f.tar.gz PrismLauncher-ffcef673de9fe848a92d23e02a2abed8df16eb9f.tar.bz2 PrismLauncher-ffcef673de9fe848a92d23e02a2abed8df16eb9f.zip |
Merge pull request #4285 from khenriks/develop
Fix instructions for building on Mac
-rw-r--r-- | BUILD.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -194,7 +194,7 @@ cmake \ -DCMAKE_C_COMPILER=/usr/bin/clang \ -DCMAKE_CXX_COMPILER=/usr/bin/clang++ \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX:PATH="../dist/" \ + -DCMAKE_INSTALL_PREFIX:PATH="$(dirname $PWD)/dist/" \ -DCMAKE_PREFIX_PATH="/path/to/Qt5.6/" \ -DQt5_DIR="/path/to/Qt5.6/" \ -DLauncher_LAYOUT=mac-bundle \ @@ -202,3 +202,6 @@ cmake \ .. make install ``` + +**Note:** The final app bundle may not run due to code signing issues, which +need to be fixed with `codesign -fs -`. |