Changes between Version 24 and Version 25 of dev/Windows
- Timestamp:
- Oct 27, 2006, 2:19:06 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/Windows
v24 v25 2 2 [[TracNav(TracNav/TOC)]] 3 3 4 === Brute force version===5 1. First you will need subversion from [subversion.tigris.org]. There is also a GUI version out there at [http://tortoisesvn.tigris.org] (The commandline svn is probably the right choice if you are experienced with the shell, and for advanced work)6 1. Download and install [http://svn.orxonox.net/webdev/develop/win32/dev/MinGW-4.1.0.exe min gw]7 1. Download and install[http://svn.orxonox.net/webdev/develop/win32/dev/MSYS-1.0.10.exe msys]8 1. choose another path than minGW for msys installation9 2. while installing say twice yes (y)10 3. give the exact path to theminGW directory, so msys can configure the important links.4 === Installing the MinGW, msys & Libraries === 5 1. First of all you need subversion from [subversion.tigris.org]. There is also a GUI version at [http://tortoisesvn.tigris.org] (The command line version is good if you are experienced with the shell, otherwise download the GUI version) 6 1. Download and install [http://svn.orxonox.net/webdev/develop/win32/dev/MinGW-4.1.0.exe minGW] 7 1. Download [http://svn.orxonox.net/webdev/develop/win32/dev/MSYS-1.0.10.exe msys] 8 1. Install msys on another path than minGW 9 2. During the installation process answer yes (y) twice 10 3. Type in the exact path of minGW directory, so msys can configure the important links. 11 11 1. Install [http://svn.orxonox.net/webdev/develop/win32/dev/msysDTK-1.0.1.exe msysDTK] to the same direcory as msys. 12 1. extract the [http://svn.orxonox.net/webdev/develop/win32/dev/toMSYS.rar toMSYS.rar] tomsys.13 1. extract the [http://svn.orxonox.net/webdev/develop/win32/dev/toMinGW.rar toMinGW.rar] to mingw.12 1. Extract the [http://svn.orxonox.net/webdev/develop/win32/dev/toMSYS.rar toMSYS.rar] to the same direcory as msys. 13 1. Extract the [http://svn.orxonox.net/webdev/develop/win32/dev/toMinGW.rar toMinGW.rar] to the same direcory as minGW. 14 14 1. Download and install the newest version of Trolltech's Qt at http://www.trolltech.com 15 1. optionally you can always download the [http://svn.orxonox.net/webdev/develop/win32/runtime/runtime] libraries15 1. Optionally you can download the [http://svn.orxonox.net/webdev/develop/win32/runtime/ Orxonox runtime] libraries 16 16 17 17 18 18 === Compilation === 19 1. start msys 20 1. goto the project directory 21 1. run 19 1. Start msys 20 1. Go to the project directory 21 {{{ 22 $ cd orxonoxn 23 }}} 24 1. Run 22 25 {{{ 23 26 $ ./autogen.sh … … 25 28 $ make 26 29 }}} 27 28 30 (note that all packages can be downloaded from from http://mingw.org) 29 30 31