Difference between revisions of "Compiling with brew (OpenXcom)"

From UFOpaedia
Jump to navigation Jump to search
(update to match what is done for builds at https://bitbucket.org/grrussel/openxcomosx/src)
Line 13: Line 13:
 
   git clone https://github.com/SupSuper/OpenXcom.git
 
   git clone https://github.com/SupSuper/OpenXcom.git
 
    
 
    
   cd openxcom/src
+
   cd OpenXcom/src
 
   make -f Makefile.simple  -j N ( N == number of cores on your machine)
 
   make -f Makefile.simple  -j N ( N == number of cores on your machine)
  
 
[[Category:OpenXcom]]
 
[[Category:OpenXcom]]

Revision as of 02:58, 22 December 2013

Install brew

 see http://mxcl.github.com/homebrew/

Install yaml-cpp and dependencies

 brew install yaml-cpp
 brew install sdl
 brew install sdl_gfx
 brew install sdl_mixer
 brew install sdl_image

Clone the source

 git clone https://github.com/SupSuper/OpenXcom.git
 
 cd OpenXcom/src
 make -f Makefile.simple  -j N ( N == number of cores on your machine)