Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 6 and Version 7 of dev/WindowsMinGW/345


Ignore:
Timestamp:
Sep 21, 2010, 4:19:59 PM (14 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/WindowsMinGW/345

    v6 v7  
    1010[[br]]
    1111
    12 = Windows with MingW with GCC v3.4.5 (outdated) =
     12= Windows with MingW with GCC 3.4.5 (outdated) =
    1313
    14 Note: This page is outdated. It describes how to build Orxonox with an old version of MinGW that ships with GCC v3.4.5. This works only with Ogre up to version 1.6 (which is included in the 4th dependency package). We recommend to use the current version of MinGW which works with the recent dependencies. See [wiki:WindowsMinGW/current] for an installation guide. However this guide is still present to help people that want to use an old version of GCC.
     14Note: This page is outdated. It describes how to build Orxonox with an old version of MinGW that ships with GCC 3.4.5. This works only with Ogre up to version 1.6 (which is included in the 4th dependency package). We recommend to use the current version of MinGW which works with the recent dependencies. See [wiki:WindowsMinGW/current] for an installation guide. However this guide is still present to help people that want to use an old version of GCC.
    1515
    1616== MinGW ==
     
    118118 * '''While installing check the option to "add CMake to the system PATH"'''
    119119
    120 Open {{{c:\<msys-install-path>\etc\profile}}} and add the following line at the bottom of the file:
     120== Build Orxonox ==
     121First we add an alias to the profile of MSYS which helps us creating make-files with CMake. Open the MSYS console and type the following lines:
    121122{{{
    122 alias cm='cmake .. -G "MSYS Makefiles"'
     123$ echo alias cm=\'cmake .. -G \"MSYS Makefiles\"\' >> ~/.profile
     124$ source ~/.profile
    123125}}}
    124126
    125 == Build Orxonox ==
    126 Open the MSYS console, change into your trunk folder and create a build directory:
     127Change into the trunk folder and create a build directory:
    127128{{{
    128129$ cd trunk
     
    131132}}}
    132133
    133 Now we use the alias "cm" from the previous section. This shortcut will invoke CMake and create the Makefiles. Type the following into the MSYS console:
     134Now we use the alias "cm" we created before. This shortcut will invoke CMake and create the Makefiles. Type the following into the MSYS console:
    134135{{{
    135136$ cm