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.
38 lines
724 B
38 lines
724 B
//----------------------------------------------------------------------------- |
|
// SMTPMAIL.VPC |
|
// |
|
// Project Script |
|
//----------------------------------------------------------------------------- |
|
|
|
$Macro SRCDIR "..\.." |
|
$Macro OUTBINDIR "..\bin" |
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc" |
|
|
|
$Configuration |
|
{ |
|
$Compiler |
|
{ |
|
$AdditionalIncludeDirectories "$BASE,..\common,..\vmpi" |
|
$PreprocessorDefinitions "$BASE;MACRO_MATHLIB;PROTECTED_THINGS_DISABLE" |
|
} |
|
|
|
$Linker |
|
{ |
|
$AdditionalDependencies "$BASE ws2_32.lib odbc32.lib odbccp32.lib" |
|
} |
|
} |
|
|
|
$Project "Smtpmail" |
|
{ |
|
$Folder "Source Files" |
|
{ |
|
$File "smtpmail.cpp" |
|
$File "simplesocket.cpp" |
|
} |
|
|
|
$Folder "Header Files" |
|
{ |
|
$File "simplesocket.h" |
|
} |
|
}
|
|
|