= Windows with MingW = [[TOC(heading=Platforms, depth=1, WindowsMinGW, VisualStudio, LinuxGentoo, LinuxDebian, LinuxUbuntu, LinuxTardis)]] == MinGW == Download and install the [http://svn.orxonox.net/webdev/develop/win32/dev/MinGW_Toolbox_Setup_wr1.exe MinGW package]. Usually MinGW is installed to {{{c:\mingw}}} == MSYS == Download the MSYS Installer from sourceforge: [http://svn.orxonox.net/webdev/develop/win32/dev/MSYS-1.0.10.exe Download] (or version 1.0.11 if you're using an x64 system: [http://switch.dl.sourceforge.net/sourceforge/mingw/MSYS-1.0.11-rc-1.exe Download])[[br]] MSYS (Minimal SYStem) is a software port of the Unix-Shell to Windows. It's used by MinGW-Developers as a minimal system which can, for example, execute configure-scripts. 1. Install MSYS into another path than MinGW 1. During the installation process answer yes (y) twice 1. Specify the path of the MinGW directory (most probably this will be {{{c:/mingw}}}). Switch to the home-directory of your MSYS installation: {{{c:\\home\\}}}[[br]] This is your homedirectory in MSYS, this is where the action takes place. '''In the following, we'll call this directory {{{c:\\}}} to make things shorter.''' == SVN == To use [wiki:SVN] on your system we recommend TortoiseSVN, a very useful GUI-version. [http://tortoisesvn.net/downloads Download] TortoiseSVN is a shell extension. You can use it within Windows Explorer, which is very practical. Most options are available through the context menu (right mouse button). == Get the source == Check out the Orxonox-repository from {{{https://svn.orxonox.net/game/code/trunk/}}} into a folder named 'trunk', for example {{{c:\\trunk\}}}. '''It's very important to use a directory inside your MSYS homedirectory, otherwise you can't compile.''' * URL: {{{https://svn.orxonox.net/game/code/trunk/}}} * Checkout directory: {{{c:\\trunk\}}} In TortoiseSVN this is done by right clicking into {{{c:\\}}} and chosing "SVN checkout...". Then set the URL of the repository to {{{https://svn.orxonox.net/game/code/trunk/}}} and the checkout directory to {{{c:\\trunk\}}} (checkout depth should be "Fully recursive" and revision "HEAD"). Accept the certificate and enter your username and password in the authentication form (only if it's the first time you check out code from our server). If you're not using TortoiseSVN, use the "svn co repository directory" command. See [wiki:SVN] for more information. Now do the same with the media repository: * URL: {{{https://svn.orxonox.net/game/data/trunk}}} * Checkout directory: {{{c:\\media}}} Now you should have the following directories in your home: {{{ c:\\media c:\\trunk }}} == Dependencies == Download the Orxonox dependencies: [http://svn.orxonox.net/ogre/precompiled_dependencies/OrxonoxDeps_090303_MinGW.7z Download] (get 7-Zip [http://www.7-zip.org/ here]).[[br]] Extract the archive into {{{c:\\}}} Now you should have the following directories in your home: {{{ c:\\dependencies c:\\media c:\\trunk }}} == CMake == Now we can build Orxonox. To do so, we need CMake. CMake is a cross-platform system for build automation. Download the latest binary release ('''at least version 2.6''') from [http://cmake.org/HTML/Download.html here] and install it. * '''While installing check the option to add CMake to the system PATH''' Open the MSYS console, change into your trunk folder and create an output directory for the binaries: {{{ $ cd trunk $ mkdir build $ cd build }}} Then create a shortcut to save some typing in the next section: {{{ $ echo "cmake .. -G \"MSYS Makefiles\"" > cm }}} == Building Orxonox == Now we use our shortcut from the previous section. This script will invoke CMake and create the Makefiles. Type the following into the MSYS console: {{{ #!html
$ ./cm (the file we created just before)
$ make
}}} The first command will check your system (and the dependency directory) for all needed libraries, create the configuration and generate the makefiles. The second command builds Orxonox. If you have a multicore CPU, use "make -j3" instead of just "make". If you get an error while executing one of those steps, report it in the [http://forum.orxonox.net/ Forum] or ask us in [irc://irc.orxonox.net/orxonox IRC]. Compiling will take some time (CMake shows you the percentage). Be patient.[[br]] If everything worked fine, start Orxonox with {{{c:\\trunk\build\run.bat}}}