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

From UFOpaedia
Jump to navigation Jump to search
 
Line 4: Line 4:
 
Install dependencies
 
Install dependencies
  
   brew install yaml-cpp sdl sdl_gfx sdl_image sdl_mixer --with-flac --with-libmikmod --with-libvorbis
+
   brew install cmake yaml-cpp sdl sdl_gfx sdl_image sdl_mixer --with-flac --with-libmikmod --with-libvorbis
  
Clone the source
+
Then [[Compiling_with_CMake_(OpenXcom)|build with cmake]] or [[Compiling_with_Make_(OpenXcom)|make]].
  git clone https://github.com/SupSuper/OpenXcom.git
+
 
    
+
When running cmake to generate the build files, remember to specify clang as your compiler:
   cd OpenXcom/src
+
 
   make -f Makefile.simple -j N ( N == number of cores on your machine)
+
   mkdir build
 +
   cd build
 +
   CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake ..
  
 
[[Category:OpenXcom]]
 
[[Category:OpenXcom]]

Latest revision as of 03:06, 18 May 2015

Install brew

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

Install dependencies

 brew install cmake yaml-cpp sdl sdl_gfx sdl_image sdl_mixer --with-flac --with-libmikmod --with-libvorbis

Then build with cmake or make.

When running cmake to generate the build files, remember to specify clang as your compiler:

 mkdir build
 cd build
 CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake ..