mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 14:46:53 +00:00
25 lines
534 B
Plaintext
25 lines
534 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// SOUNDTEST.VPC
|
|
//
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$Macro SRCDIR "..\.."
|
|
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_win_win32_base.vpc"
|
|
|
|
$Project "Soundtest"
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
$File "$SRCDIR\public\filesystem_init.cpp"
|
|
$File "soundtest.cpp"
|
|
}
|
|
|
|
$Folder "Link Libraries"
|
|
{
|
|
$DynamicFile "$SRCDIR\lib\public\appframework.lib"
|
|
}
|
|
}
|