You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
883 B
26 lines
883 B
5 years ago
|
$MacroRequired "OUTDLLEXT" "$_DLL_EXT"
|
||
|
$Include "$SRCDIR\vpc_scripts\platform_dirs.vpc"
|
||
|
$include "$SRCDIR\vpc_scripts\source_base.vpc"
|
||
|
|
||
|
$include "$SRCDIR\vpc_scripts\source_dll_posix_base.vpc" [$POSIX]
|
||
|
$Include "$SRCDIR\vpc_scripts\source_dll_win32_base.vpc" [( $WIN32 || $WIN64 ) && !$POSIX]
|
||
|
$Include "$SRCDIR\vpc_scripts\source_dll_x360_base.vpc" [$X360]
|
||
|
$Include "$SRCDIR\vpc_scripts\source_ppu_prx_ps3_base.vpc" [$PS3]
|
||
|
$Include "$SRCDIR\vpc_scripts\source_video_base.vpc"
|
||
|
|
||
|
$Configuration
|
||
|
{
|
||
|
$General
|
||
|
{
|
||
|
$TargetExtension "$OUTDLLEXT"
|
||
|
}
|
||
|
|
||
|
$Compiler
|
||
|
{
|
||
|
$PreprocessorDefinitions "$BASE;DEV_BUILD" [!$PUBLISH]
|
||
|
$PreprocessorDefinitions "$BASE;_PROFILE" [$PROFILE && !$RETAIL]
|
||
|
$PreprocessorDefinitions "$BASE;RETAIL_ASSERTS" [$RETAIL && $RETAILASSERTS]
|
||
|
$PreprocessorDefinitions "$BASE;FRAME_POINTER_OMISSION_DISABLED" // This is now always true.
|
||
|
}
|
||
|
}
|