mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
76 lines
2.0 KiB
Plaintext
76 lines
2.0 KiB
Plaintext
|
|
$Include "$SRCDIR\vpc_scripts\version.vpc"
|
|
|
|
$Macro LIBPUBLIC "$SRCDIR\lib\public$PLATSUBDIR"
|
|
$Macro LIBCOMMON "$SRCDIR\lib\common$PLATSUBDIR"
|
|
|
|
$MacroRequired "SRCDIR"
|
|
|
|
|
|
$Configuration "Debug"
|
|
{
|
|
$Compiler
|
|
{
|
|
$PreprocessorDefinitions "$BASE;DEBUG;_DEBUG"
|
|
$OptimizerLevel "-gdwarf-2 -g2 $(OptimizerLevel_CompilerSpecific)" [$OSXALL]
|
|
$OptimizerLevel "-gdwarf-4 -g2 $(OptimizerLevel_CompilerSpecific)" [$LINUX]
|
|
}
|
|
}
|
|
|
|
$Configuration "Release"
|
|
{
|
|
$Compiler
|
|
{
|
|
$PreprocessorDefinitions "$BASE;NDEBUG"
|
|
$OptimizerLevel "-gdwarf-2 -g2 $(OptimizerLevel_CompilerSpecific)" [$OSXALL]
|
|
$OptimizerLevel "-gdwarf-4 -g2 $(OptimizerLevel_CompilerSpecific)" [$LINUX]
|
|
$PreprocessorDefinitions "$BASE;RELEASEASSERTS" [$RELEASEASSERTS]
|
|
}
|
|
}
|
|
|
|
$Configuration
|
|
{
|
|
$General
|
|
{
|
|
$ConfigurationType "Application (.exe)"
|
|
}
|
|
|
|
$Compiler
|
|
{
|
|
$AdditionalIncludeDirectories "$SRCDIR\common;$SRCDIR\public;$SRCDIR\public\tier0;$SRCDIR\public\tier1"
|
|
$AdditionalLibraryDirectories "$LIBCOMMON;$LIBPUBLIC" [$OSXALL]
|
|
$PreprocessorDefinitions "$BASE;GNUC;POSIX;COMPILER_GCC;_DLL_EXT=$_DLL_EXT"
|
|
$PreprocessorDefinitions "$BASE;DEDICATED" [$DEDICATED]
|
|
// the 10240 in the following line is the output of `sysctl -n kern.maxfilesperproc`
|
|
$PreprocessorDefinitions "$BASE;_OSX;OSX;_DARWIN_UNLIMITED_SELECT;FD_SETSIZE=10240;" [$OSXALL]
|
|
$PreprocessorDefinitions "$BASE;OVERRIDE_V_DEFINES" [$OSXALL]
|
|
$PreprocessorDefinitions "$BASE;_LINUX;LINUX;" [$LINUXALL]
|
|
$PreprocessorDefinitions "$BASE;PLATFORM_64BITS" [$LINUX64]
|
|
$SymbolVisibility "hidden" [$POSIX]
|
|
$PreprocessorDefinitions "$BASE;POSIX;_POSIX" [$POSIX]
|
|
|
|
$PreprocessorDefinitions "$BASE;PLATFORM_64BITS" [$OSX64]
|
|
$GCC_ExtraCompilerFlags "$BASE -arch x86_64" [$OSX64]
|
|
|
|
$Create/UsePCHThroughFile "stdafx.h"
|
|
}
|
|
|
|
$Linker
|
|
{
|
|
$GCC_ExtraLinkerFlags "$BASE -arch x86_64" [$OSX64]
|
|
}
|
|
|
|
}
|
|
|
|
$Project
|
|
{
|
|
|
|
$Folder "Link Libraries"
|
|
{
|
|
$ImpLib "$LIBPUBLIC\tier0" [!$IS_LIB_PROJECT]
|
|
$Lib "$LIBPUBLIC\tier1" [!$IS_LIB_PROJECT]
|
|
$ImpLib "$LIBPUBLIC\vstdlib" [!$IS_LIB_PROJECT]
|
|
}
|
|
}
|
|
|