Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 19 and Version 20 of dev/WindowsMinGW


Ignore:
Timestamp:
Feb 12, 2009, 9:55:47 PM (15 years ago)
Author:
rgrieder
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/WindowsMinGW

    v19 v20  
    5858
    5959
    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 ==
     61You 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.
    6262
    6363
     
    6666 * While installing check the option to add CMake to the system PATH
    6767
    68 Open the MSYS console, change into your trunk folder and create a shortcut in the MSYS console:
     68Open the MSYS console, change into your trunk folder and create a binary output directory:
    6969{{{
    7070cd trunk
    71 echo "cmake . -G \"MSYS Makefiles\"" > cm
     71mkdir build
     72cd build
    7273}}}
    73 
     74Then create a shortcut to save some typing:
     75{{{
     76echo "cmake .. -G \"MSYS Makefiles\"" > cm
     77}}}
     78This script will invoke CMake and create the Makefiles.
    7479
    7580== Building Orxonox ==
     
    8287</pre>
    8388}}}
     89If you have two CPU cores, append "-j3" to "make".
    8490
    85 Compiling will take some time (CMake shows you the percentage).
     91Compiling will take some time (CMake shows you the percentage). [[br]]
    8692
    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.
     93If everything worked fine, start Orxonox with {{{c:\<msys-homedir>\trunk\run.bat}}}