blob: 842cef01b013f1b25c3c6b1873b5c9df6f9f1802 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@echo off
echo ---+++--- Building Theora (Static) ---+++---
if .%SRCROOT%==. set SRCROOT=D:\xiph
set OLDPATH=%PATH%
set OLDINCLUDE=%INCLUDE%
set OLDLIB=%LIB%
call "c:\program files\microsoft visual studio\vc98\bin\vcvars32.bat"
echo Setting include paths for Theora
set INCLUDE=%INCLUDE%;%SRCROOT%\ogg\include;%SRCROOT%\theora\include
echo Compiling...
msdev theora_static.dsp /useenv /make "theora_static - Win32 Release" /rebuild
set PATH=%OLDPATH%
set INCLUDE=%OLDINCLUDE%
set LIB=%OLDLIB%
|