You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
612 B
36 lines
612 B
5 years ago
|
//-----------------------------------------------------------------------------
|
||
|
// 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"
|
||
|
{
|
||
|
}
|
||
|
}
|