Changes between Version 7 and Version 8 of dev/WindowsMinGW/345
- Timestamp:
- Sep 21, 2010, 4:22:24 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/WindowsMinGW/345
v7 v8 121 121 First 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: 122 122 {{{ 123 $echo alias cm=\'cmake .. -G \"MSYS Makefiles\"\' >> ~/.profile124 $source ~/.profile123 echo alias cm=\'cmake .. -G \"MSYS Makefiles\"\' >> ~/.profile 124 source ~/.profile 125 125 }}} 126 126 127 127 Change into the trunk folder and create a build directory: 128 128 {{{ 129 $cd trunk130 $mkdir build131 $cd build129 cd trunk 130 mkdir build 131 cd build 132 132 }}} 133 133 134 134 Now we use the alias "cm" we created before. This shortcut will invoke CMake and create the Makefiles. Type the following into the MSYS console: 135 135 {{{ 136 $cm137 $make136 cm 137 make 138 138 }}} 139 139 The 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.