summaryrefslogtreecommitdiffstats
path: root/BUILD.md
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-02-11 21:04:10 +0100
committerPetr Mrázek <peterix@gmail.com>2016-02-11 21:04:10 +0100
commitb7f75637fa1bfb6a25923c8cdecc9489e4aee321 (patch)
treec8d93a31636ec6f58c34d62148aa7d75aadd9a36 /BUILD.md
parent4ee1900201413cd2f792eec6d284946f3c177e93 (diff)
downloadMultiMC-b7f75637fa1bfb6a25923c8cdecc9489e4aee321.tar
MultiMC-b7f75637fa1bfb6a25923c8cdecc9489e4aee321.tar.gz
MultiMC-b7f75637fa1bfb6a25923c8cdecc9489e4aee321.tar.lz
MultiMC-b7f75637fa1bfb6a25923c8cdecc9489e4aee321.tar.xz
MultiMC-b7f75637fa1bfb6a25923c8cdecc9489e4aee321.zip
GH-1451 add `make install` step to OSX build instructions
Diffstat (limited to 'BUILD.md')
-rw-r--r--BUILD.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/BUILD.md b/BUILD.md
index 6505a27f..ee6fdf98 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -135,6 +135,9 @@ brew install cmake
```
### 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.
+
```
git clone https://github.com/MultiMC/MultiMC5.git
git submodule init
@@ -145,8 +148,9 @@ cd build
export CMAKE_PREFIX_PATH=/usr/local/opt/qt5
export CC=/usr/local/bin/gcc-4.8
export CXX=/usr/local/bin/g++-4.8
-cmake ..
+cmake .. -DCMAKE_INSTALL_PREFIX:PATH=/Users/YOU/some/path/that/makes/sense/
make
+make install
```
**These build instructions were taken and adapted from https://gist.github.com/number5/7250865 If they don't work for you, let us know on IRC ([Esper/#MultiMC](http://webchat.esper.net/?nick=&channels=MultiMC))!**