blob: e81e03df43fe3ead94bfc7e8a5c8b4b3dce7ab74 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
$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]
}
}
|