mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 14:46:53 +00:00
28 lines
561 B
Plaintext
28 lines
561 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// DEPCHECK.VPC
|
|
//
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$Macro SRCDIR "..\.."
|
|
$Macro OUTBINDIR "$SRCDIR\devtools\bin"
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
|
|
|
|
$Project "Depcheck"
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
$File "depcheck.cpp"
|
|
$File "depcheck_util.cpp"
|
|
$File "processmodule.cpp"
|
|
}
|
|
|
|
$Folder "Header Files"
|
|
{
|
|
$File "codeprocessor.h"
|
|
$File "depcheck_util.h"
|
|
$File "icodeprocessor.h"
|
|
}
|
|
}
|