Difference between revisions of "How to build VCMI (macOS)"

From VCMI Project Wiki
Jump to: navigation, search
(Created page with "= Prerequisites = * Xcode. Can be downloaded from Mac App Store. * CMake. Can be downloaded from ([http://www.cmake.org/cmake/resources/software.html link]) or installed from ...")
 
Line 1: Line 1:
= Prerequisites =
+
== Prerequisites ==
 
* Xcode. Can be downloaded from Mac App Store.
 
* Xcode. Can be downloaded from Mac App Store.
 
* CMake. Can be downloaded from ([http://www.cmake.org/cmake/resources/software.html link]) or installed from MacPorts
 
* CMake. Can be downloaded from ([http://www.cmake.org/cmake/resources/software.html link]) or installed from MacPorts
 
* Any git or Subversion client you prefer.
 
* Any git or Subversion client you prefer.
 
* Archive with prebuilt libraries and frameworks ([http://download.vcmi.eu/xcode-pack.zip link])
 
* Archive with prebuilt libraries and frameworks ([http://download.vcmi.eu/xcode-pack.zip link])
 +
 +
== Preparing place ==
 +
* Unzip downloaded archive
 +
* Open terminal and go to extracted xcode-pack directory
 +
* Checkout source via git:
 +
<pre>git clone https://github.com/vcmi/vcmi.git</pre>
 +
  or via svn:
 +
<pre>svn checkout https://vcmi.svn.sourceforge.net/svnroot/vcmi/trunk/ vcmi</pre>

Revision as of 15:11, 12 January 2013

Prerequisites

  • Xcode. Can be downloaded from Mac App Store.
  • CMake. Can be downloaded from (link) or installed from MacPorts
  • Any git or Subversion client you prefer.
  • Archive with prebuilt libraries and frameworks (link)

Preparing place

  • Unzip downloaded archive
  • Open terminal and go to extracted xcode-pack directory
  • Checkout source via git:
git clone https://github.com/vcmi/vcmi.git
 or via svn:
svn checkout https://vcmi.svn.sourceforge.net/svnroot/vcmi/trunk/ vcmi