mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
20 lines
787 B
Plaintext
20 lines
787 B
Plaintext
$Include "$SRCDIR\vpc_scripts\platform_dirs.vpc"
|
|
$include "$SRCDIR\vpc_scripts\source_base.vpc"
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_posix_base.vpc" [$POSIX]
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_win_win32_base.vpc" [$WIN32 || $WIN64]
|
|
$Include "$SRCDIR\vpc_scripts\source_xex_x360_base.vpc" [$X360]
|
|
$Include "$SRCDIR\vpc_scripts\source_ppu_elf_ps3_base.vpc" [$PS3]
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_video_base.vpc"
|
|
|
|
$Configuration
|
|
{
|
|
$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.
|
|
}
|
|
} |