Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


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

Legend:

Unmodified
Added
Removed
Modified
  • dev/WindowsMinGW/345

    v7 v8  
    121121First 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:
    122122{{{
    123 $ echo alias cm=\'cmake .. -G \"MSYS Makefiles\"\' >> ~/.profile
    124 $ source ~/.profile
     123echo alias cm=\'cmake .. -G \"MSYS Makefiles\"\' >> ~/.profile
     124source ~/.profile
    125125}}}
    126126
    127127Change into the trunk folder and create a build directory:
    128128{{{
    129 $ cd trunk
    130 $ mkdir build
    131 $ cd build
     129cd trunk
     130mkdir build
     131cd build
    132132}}}
    133133
    134134Now we use the alias "cm" we created before. This shortcut will invoke CMake and create the Makefiles. Type the following into the MSYS console:
    135135{{{
    136 $ cm
    137 $ make
     136cm
     137make
    138138}}}
    139139The first command ({{{cm}}}) will check your system (and the dependency directory) for all needed libraries, create the configuration and generate the makefiles. The second command ({{{make}}}) builds Orxonox.