summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew <forkk@forkk.net>2013-11-28 13:24:08 -0600
committerAndrew <forkk@forkk.net>2013-11-28 13:24:08 -0600
commitfec8c054c3967d9ed4bbf288b9c4993b8aaeac1d (patch)
tree93f0ac7ae4bd07af2cc3a447069ed13252fd1bc8
parenta4c5f0135ef8e3671f54cf56b1aa8766ee4b4a20 (diff)
parente18feee26fbba2a2c961a1a34542c6a04e879bb1 (diff)
downloadMultiMC-fec8c054c3967d9ed4bbf288b9c4993b8aaeac1d.tar
MultiMC-fec8c054c3967d9ed4bbf288b9c4993b8aaeac1d.tar.gz
MultiMC-fec8c054c3967d9ed4bbf288b9c4993b8aaeac1d.tar.lz
MultiMC-fec8c054c3967d9ed4bbf288b9c4993b8aaeac1d.tar.xz
MultiMC-fec8c054c3967d9ed4bbf288b9c4993b8aaeac1d.zip
Merge branch 'develop' of github.com:MultiMC/MultiMC5 into feature_yggdrasil
-rw-r--r--BUILD.md20
1 files changed, 19 insertions, 1 deletions
diff --git a/BUILD.md b/BUILD.md
index 6454bfb7..db3a0590 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -104,4 +104,22 @@ Getting the project to build and run on Windows is easy if you use Qt's IDE, Qt
# OS X
-*There are no build instructions for OS X yet. If you can help with this section please contact us on IRC (Esper/#MultiMC)!*
+### Install prerequisites:
+1. install homebrew
+2. brew install qt5
+3. brew tap homebrew/versions
+4. brew install gcc48
+5. brew install cmake
+
+### Build
+1. git clone https://github.com/MultiMC/MultiMC5.git
+2. cd MultiMC5
+3. mkdir build
+4. cd build
+5. export CMAKE_PREFIX_PATH=/usr/local/opt/qt5
+6. export CC=/usr/local/bin/gcc-4.8
+7. export CXX=/usr/local/bin/g++-4.8
+8. cmake ..
+9. make
+
+*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)!*