mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
36 lines
612 B
Plaintext
36 lines
612 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// DBMON.VPC
|
|
//
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$Macro SRCDIR "..\.."
|
|
$Macro OUTBINDIR "..\bin"
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
|
|
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
$PreprocessorDefinitions "$BASE;MACRO_MATHLIB;PROTECTED_THINGS_DISABLE"
|
|
}
|
|
|
|
$Linker
|
|
{
|
|
$AdditionalDependencies "$BASE ws2_32.lib odbc32.lib odbccp32.lib winmm.lib"
|
|
}
|
|
}
|
|
|
|
$Project "dbmon"
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
$File "dbmon.c"
|
|
}
|
|
|
|
$Folder "Header Files"
|
|
{
|
|
}
|
|
}
|