mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
9d91c563bc
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@43 ea6a568a-9f4f-0410-981a-c910a81bb256
11 lines
484 B
Batchfile
Executable File
11 lines
484 B
Batchfile
Executable File
@echo off
|
|
|
|
rem See COMPILE-win32.txt for instructions.
|
|
|
|
echo Compiling C++ files
|
|
g++ -c sound\cpp_avcodec.cpp -I.\includes\ffmpeg\
|
|
g++ -c ogre\cpp_ogre.cpp -I.\includes\ogre\
|
|
|
|
echo Compiling main program (openmw.exe)
|
|
gdc -Wall -g openmw.d bsa\*.d core\*.d esm\*.d input\*.d nif\*.d ogre\*.d scene\*.d sound\*.d util\*.d cpp_ogre.o cpp_avcodec.o monster\util\*.d avcodec-51.dll avformat-52.dll avdevice-52.dll avutil-49.dll openal32.dll ogremain_d.dll OIS_d.dll -lstdc++ -o openmw.exe
|