summaryrefslogtreecommitdiffstats
path: root/BUILD.md
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-11-28 13:41:14 +0100
committerPetr Mrázek <peterix@gmail.com>2013-11-28 13:41:14 +0100
commite18feee26fbba2a2c961a1a34542c6a04e879bb1 (patch)
tree0595b4b9285f328c8a2a722098056b36105c5212 /BUILD.md
parentd794a4d0bfac0341c15bd5273e8dc81fe82531ef (diff)
downloadMultiMC-e18feee26fbba2a2c961a1a34542c6a04e879bb1.tar
MultiMC-e18feee26fbba2a2c961a1a34542c6a04e879bb1.tar.gz
MultiMC-e18feee26fbba2a2c961a1a34542c6a04e879bb1.tar.lz
MultiMC-e18feee26fbba2a2c961a1a34542c6a04e879bb1.tar.xz
MultiMC-e18feee26fbba2a2c961a1a34542c6a04e879bb1.zip
Update BUILD.md
Add OSX build instructions taken from https://gist.github.com/number5/7250865
Diffstat (limited to 'BUILD.md')
-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)!*