mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
55 lines
1.1 KiB
Plaintext
55 lines
1.1 KiB
Plaintext
//-----------------------------------------------------------------------------
|
|
// SOURCE_EXE_WIN_WIN32.VPC
|
|
//
|
|
// Base Settings for Source(TM) Projects
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$Include "$SRCDIR\vpc_scripts\version.vpc"
|
|
$Include "$SRCDIR\vpc_scripts\steam_posix_base.vpc"
|
|
|
|
$MacroRequired "SRCDIR"
|
|
$MacroRequired "OUTBINNAME" "$PROJECTNAME"
|
|
|
|
$Include "$SRCDIR\vpc_scripts\loadaddress.vpc"
|
|
|
|
|
|
$IgnoreRedundancyWarning "ON"
|
|
|
|
$Configuration
|
|
{
|
|
$General
|
|
{
|
|
$ConfigurationType "Application (.exe)"
|
|
}
|
|
|
|
$Compiler
|
|
{
|
|
$AdditionalIncludeDirectories "$SRCDIR\common;$SRCDIR\public;$SRCDIR\public\tier0;$SRCDIR\public\tier1;/usr/include/malloc"
|
|
$PreprocessorDefinitions "$BASE;_GNUC;POSIX;"
|
|
$PreprocessorDefinitions "$BASE;_OSX;OSX;" [$OSX32 || $OSX64]
|
|
$PreprocessorDefinitions "$BASE;_LINUX;LINUX" [$LINUXALL]
|
|
}
|
|
$Linker
|
|
{
|
|
$OutputFile "$(OutDir)/$OUTBINNAME"
|
|
}
|
|
}
|
|
|
|
$Project
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
$File "$SRCDIR\public\tier0\memoverride.cpp"
|
|
{
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
$Create/UsePrecompiledHeader "Not Using Precompiled Headers"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|