diff options
author | swirl <swurl@swurl.xyz> | 2022-01-30 11:33:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-30 11:33:42 -0500 |
commit | c569bfbe6d2fe23012a18f1d7427f6b9a1fd4eb6 (patch) | |
tree | 3b649e79cffd1f515b89be61d9653001dd1283a8 /BUILD.md | |
parent | b92533868802947875e93a607ac1b7fbaf090175 (diff) | |
parent | 8ea1ebaf1b58c3b1f39b45f54fb8b2f87bf7b7b9 (diff) | |
download | PrismLauncher-c569bfbe6d2fe23012a18f1d7427f6b9a1fd4eb6.tar.gz PrismLauncher-c569bfbe6d2fe23012a18f1d7427f6b9a1fd4eb6.tar.bz2 PrismLauncher-c569bfbe6d2fe23012a18f1d7427f6b9a1fd4eb6.zip |
Merge pull request #111 from DioEgizio/patch-1
improve a bit MacOS build instructions
Diffstat (limited to 'BUILD.md')
-rw-r--r-- | BUILD.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -256,8 +256,8 @@ zlib1.dll - Install XCode Command Line tools - Install the official build of CMake (https://cmake.org/download/) -- Install JDK 8 (https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html) -- Get Qt 5.6 and install it (https://download.qt.io/new_archive/qt/5.6/5.6.3/) +- Install JDK 8 (https://adoptium.net/releases.html?variant=openjdk8&jvmVariant=hotspot) +- Get Qt 5.6 and install it (https://download.qt.io/new_archive/qt/5.6/5.6.3/) or higher (tested) (https://www.qt.io/download-qt-installer?utm_referrer=https%3A%2F%2Fwww.qt.io%2Fdownload-open-source) You can use `homebrew` to simplify the installation of build dependencies @@ -271,7 +271,7 @@ xcode-select --install ### Build -Pick an installation path - this is where the final `.app` will be constructed when you run `make install`. Supply it as the `CMAKE_INSTALL_PREFIX` argument during CMake configuration. +Pick an installation path - this is where the final `PolyMC.app` will be constructed when you run `make install`. Supply it as the `CMAKE_INSTALL_PREFIX` argument during CMake configuration. By default, it's in the dist folder under PolyMC ``` mkdir build @@ -281,15 +281,15 @@ cmake \ -DCMAKE_CXX_COMPILER=/usr/bin/clang++ \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX:PATH="$(dirname $PWD)/dist/" \ - -DCMAKE_PREFIX_PATH="/path/to/Qt5.6/" \ - -DQt5_DIR="/path/to/Qt5.6/" \ + -DCMAKE_PREFIX_PATH="/path/to/Qt/" \ + -DQt5_DIR="/path/to/Qt/" \ -DLauncher_LAYOUT=mac-bundle \ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 \ .. make install ``` -Remember to replace `/path/to/Qt5.6/` with the actual path. For newer Qt installations, it is often in your home directory. +Remember to replace `/path/to/Qt/` with the actual path. For newer Qt installations, it is often in your home directory. **Note:** The final app bundle may not run due to code signing issues, which need to be fixed with `codesign -fs -`. |