mirror of
https://github.com/microsoft/Microsoft-3D-Movie-Maker.git
synced 2024-10-31 16:52:40 +00:00
18 lines
No EOL
627 B
Batchfile
18 lines
No EOL
627 B
Batchfile
:: Setup the Socrates Directory Environment Variable
|
|
set SOC_ROOT=%cd%
|
|
:: Setup the Kauai dir that's needed by most things
|
|
set KAUAI_ROOT=%SOC_ROOT%\kauai
|
|
:: Update includes to cover whats needed
|
|
set include=%include%;%SOC_ROOT%\INC;%SOC_ROOT%\BREN\INC;%KAUAI_ROOT%\SRC
|
|
:: Setup the Build Type
|
|
:: This can be one of WIND, WINS, WINUD, WINUS
|
|
:: D specifies it is debug, vs S for shipping
|
|
:: U marks it as unicode
|
|
set BLD_TYPE_DIR=WINUS
|
|
::Setup other needed variables
|
|
:: These vary based on what you are targeting
|
|
:: Look at the $kvars.bat files under obj/%bld_type_dir%
|
|
set ARCH=WIN
|
|
set CHAR=UNICODE
|
|
set PROJ=SOC
|
|
set TYPE=DBSHIP |