Changes between Version 6 and Version 7 of dev/WindowsMinGW/345
- Timestamp:
- Sep 21, 2010, 4:19:59 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/WindowsMinGW/345
v6 v7 10 10 [[br]] 11 11 12 = Windows with MingW with GCC v3.4.5 (outdated) =12 = Windows with MingW with GCC 3.4.5 (outdated) = 13 13 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.14 Note: 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. 15 15 16 16 == MinGW == … … 118 118 * '''While installing check the option to "add CMake to the system PATH"''' 119 119 120 Open {{{c:\<msys-install-path>\etc\profile}}} and add the following line at the bottom of the file: 120 == Build Orxonox == 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: 121 122 {{{ 122 alias cm='cmake .. -G "MSYS Makefiles"' 123 $ echo alias cm=\'cmake .. -G \"MSYS Makefiles\"\' >> ~/.profile 124 $ source ~/.profile 123 125 }}} 124 126 125 == Build Orxonox == 126 Open the MSYS console, change into your trunk folder and create a build directory: 127 Change into the trunk folder and create a build directory: 127 128 {{{ 128 129 $ cd trunk … … 131 132 }}} 132 133 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: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: 134 135 {{{ 135 136 $ cm