31 lines
908 B
Plaintext
31 lines
908 B
Plaintext
|
#
|
||
|
# This file defines settings that specific to DirectPlay Xbox builds
|
||
|
#
|
||
|
|
||
|
#
|
||
|
# CRT Defines
|
||
|
#
|
||
|
# Note about CRT defines. When linking with MSVCRT you must have both _MT and _DLL specified.
|
||
|
# Using the build environment's USE_MSVCRT=1 would do this for us, but because we define our
|
||
|
# own operator new this will cause a link error because the build environment will not properly
|
||
|
# pull in msvcrt.lib last as of 5/11/2001. Therefore, we do it all manually specifying _DLL, _MT,
|
||
|
# and msvcrt.lib and USE_NOLIBS=1 ourselves. This also means that we must manually add msvcprt.lib
|
||
|
# where STL is used.
|
||
|
#
|
||
|
C_DEFINES=$(C_DEFINES) /D_MT /D_DLL
|
||
|
USE_NOLIBS=1
|
||
|
DLLENTRY=_DllMainCRTStartup
|
||
|
|
||
|
|
||
|
#
|
||
|
# Xbox build identifiers
|
||
|
#
|
||
|
|
||
|
PLAT_DIR = xbox
|
||
|
ALT_PROJECT_TARGET = xbox
|
||
|
|
||
|
CHICAGO_PRODUCT=1
|
||
|
|
||
|
#C_DEFINES=$(C_DEFINES) /UWINNT /D_XBOX
|
||
|
C_DEFINES=$(C_DEFINES) /UWINNT /D_XBOX /DXBOX_ON_DESKTOP
|