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.
40 lines
767 B
40 lines
767 B
5 years ago
|
//-----------------------------------------------------------------------------
|
||
|
// VP4MUTEX.VPC
|
||
|
//
|
||
|
// Project Script
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
$Macro SRCDIR "..\.."
|
||
|
$Macro OUTBINDIR "$SRCDIR\devtools\bin"
|
||
|
$Macro OUTBINNAME "p4mutex"
|
||
|
|
||
|
$Include "$SRCDIR\vpc_scripts\source_exe_con_win32_base.vpc"
|
||
|
|
||
|
$Configuration
|
||
|
{
|
||
|
$Compiler
|
||
|
{
|
||
|
$AdditionalIncludeDirectories "$BASE;$SRCDIR\common\p4api"
|
||
|
}
|
||
|
|
||
|
$Linker
|
||
|
{
|
||
|
$AdditionalDependencies "$BASE ws2_32.lib"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$Project "Vp4mutex"
|
||
|
{
|
||
|
$Folder "Source Files"
|
||
|
{
|
||
|
$File "vp4mutex.cpp"
|
||
|
}
|
||
|
|
||
|
$Folder "Link Libraries"
|
||
|
{
|
||
|
$File "$SRCDIR\lib\common\p4api\libclient.lib"
|
||
|
$File "$SRCDIR\lib\common\p4api\librpc.lib"
|
||
|
$File "$SRCDIR\lib\common\p4api\libsupp.lib"
|
||
|
}
|
||
|
}
|