mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-22 09:38:56 +08:00
3569c0f8f5
* Pulled in bug fixes from HL2 and HL2MP.
32 lines
585 B
Plaintext
32 lines
585 B
Plaintext
$Macro IS_LIB_PROJECT "1"
|
|
$Include "$SRCDIR\vpc_scripts\source_linux_base_project.vpc"
|
|
$MacroRequired "OUTLIBNAME" "$PROJECTNAME"
|
|
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
$PreprocessorDefinitions "$BASE;LIBNAME=$OUTLIBNAME"
|
|
$PreprocessorDefinitions "$BASE;RAD_TELEMETRY_DISABLED" [$SOURCESDK]
|
|
}
|
|
|
|
$General
|
|
{
|
|
$ConfigurationType "Static Library (.lib)"
|
|
}
|
|
|
|
$Linker
|
|
{
|
|
$OutputFile "$OUTLIBDIR/$OUTLIBNAME$_STATICLIB_EXT"
|
|
}
|
|
}
|
|
|
|
$Project
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
$File "$SRCDIR\common\debug_lib_check.cpp" [!$SOURCESDK]
|
|
}
|
|
}
|
|
|