Jump to content

Compiling with brew (OpenXcom): Difference between revisions

From UFOpaedia
No edit summary
mNo edit summary
Line 2: Line 2:
   see http://mxcl.github.com/homebrew/
   see http://mxcl.github.com/homebrew/


Install yaml-cpp and dependencies
Install dependencies


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


Clone the source
Clone the source
Line 14: Line 10:
    
    
   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 03:07, 22 December 2013

Install brew

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

Install dependencies

 brew install yaml-cpp sdl sdl_gfx sdl_mixer 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)