Changes between Version 19 and Version 20 of dev/WindowsMinGW
- Timestamp:
- Feb 12, 2009, 9:55:47 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/WindowsMinGW
v19 v20 58 58 59 59 60 == DirectX SDK August 2006==61 You need to install the DirectX SDK. Get the August 2006 edition since the dependencies contain the import libs only for this version. [http://www.microsoft.com/downloads/details.aspx?FamilyId=C72D9F1E-53F3-4747-8490-6801D8E8B4EF&displaylang=en Download]60 == DirectX == 61 You will need to have DirectX 9 installed, but that should not be a problem anyway. OGRE is using the DirectX SDK version, but the required libraries are already supplied by us. 62 62 63 63 … … 66 66 * While installing check the option to add CMake to the system PATH 67 67 68 Open the MSYS console, change into your trunk folder and create a shortcut in the MSYS console:68 Open the MSYS console, change into your trunk folder and create a binary output directory: 69 69 {{{ 70 70 cd trunk 71 echo "cmake . -G \"MSYS Makefiles\"" > cm 71 mkdir build 72 cd build 72 73 }}} 73 74 Then create a shortcut to save some typing: 75 {{{ 76 echo "cmake .. -G \"MSYS Makefiles\"" > cm 77 }}} 78 This script will invoke CMake and create the Makefiles. 74 79 75 80 == Building Orxonox == … … 82 87 </pre> 83 88 }}} 89 If you have two CPU cores, append "-j3" to "make". 84 90 85 Compiling will take some time (CMake shows you the percentage). 91 Compiling will take some time (CMake shows you the percentage). [[br]] 86 92 87 If everything worked fine, start Orxonox with {{{c:\<msys-homedir>\trunk\bin\orxonox.bat}}} 88 89 If you used another directory hierarchy than in this tutorial, you'll have to adjust the path to the media directory in {{{c:\<msys-homedir>\trunk\bin\orxonox.ini}}} This file will be created after the first start of Orxonox. 93 If everything worked fine, start Orxonox with {{{c:\<msys-homedir>\trunk\run.bat}}}