mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
38 lines
677 B
Plaintext
38 lines
677 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// VPCCRCCHECK.VPC
|
|
//
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$MacroRequired "PLATSUBDIR"
|
|
|
|
$Macro SRCDIR "..\.."
|
|
$Macro OUTBINDIR "$SRCDIR\devtools\bin"
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
|
|
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
}
|
|
}
|
|
|
|
$Project "vpccrccheck"
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
-$File "$SRCDIR\public\tier0\memoverride.cpp"
|
|
$File "vpccrccheck.cpp"
|
|
$File "crccheck_shared.cpp"
|
|
$File "$SRCDIR\tier1\checksum_crc.cpp"
|
|
}
|
|
|
|
$Folder "Link Libraries" [$WIN32]
|
|
{
|
|
$Lib tier0
|
|
$Lib tier1
|
|
$ImpLib vstdlib
|
|
}
|
|
}
|