2008-07-05 18:59:54 +00:00
|
|
|
@echo off
|
2008-07-10 17:34:39 +00:00
|
|
|
|
|
|
|
rem See BUILDING-win32.txt for instructions.
|
2008-07-05 18:59:54 +00:00
|
|
|
|
2008-07-09 22:32:32 +00:00
|
|
|
rem This file assumes it can find Ogre in ..\ogre and
|
|
|
|
rem Audiere in ..\audiere
|
2008-07-05 18:59:54 +00:00
|
|
|
|
|
|
|
echo Compiling C++ files
|
|
|
|
g++ -c sound\cpp_audiere.cpp -I..\audiere\include
|
|
|
|
g++ -c ogre\cpp_ogre.cpp -I..\ogre\include
|
|
|
|
|
|
|
|
copy ..\ogre\bin\debug\ogremain_d.dll .
|
|
|
|
copy ..\ogre\bin\debug\ois_d.dll .
|
|
|
|
copy ..\ogre\bin\debug\cg.dll .
|
|
|
|
copy ..\audiere\bin\audiere.dll .
|
|
|
|
copy \windows\system32\d3dx9_30.dll d3dx9d_30.dll
|
|
|
|
|
2008-07-06 15:01:42 +00:00
|
|
|
echo Compiling main program (openmw.exe)
|
2008-07-09 21:07:17 +00:00
|
|
|
gdc openmw.d bsa\*.d core\*.d esm\*.d input\*.d nif\*.d ogre\*.d scene\*.d sound\*.d util\*.d cpp_audiere.o cpp_ogre.o monster\util\*.d ogremain_d.dll ..\audiere\lib\audiere.lib OIS_d.dll -lstdc++ -o openmw.exe
|