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.
39 lines
808 B
39 lines
808 B
5 years ago
|
//-----------------------------------------------------------------------------
|
||
|
// SHADEREMPTY.VPC
|
||
|
//
|
||
|
// Project Script
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
$Macro SRCDIR "..\.."
|
||
|
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
|
||
|
|
||
|
$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
|
||
|
|
||
|
$Configuration
|
||
|
{
|
||
|
$Compiler
|
||
|
{
|
||
|
$AdditionalIncludeDirectories "$BASE;..\"
|
||
|
$PreprocessorDefinitions "$BASE;SHADER_DLL_EXPORT;PROTECTED_THINGS_ENABLE"
|
||
|
}
|
||
|
|
||
|
$Linker
|
||
|
{
|
||
|
$AdditionalDependencies "$BASE odbc32.lib odbccp32.lib"
|
||
|
$SystemLibraries "iconv" [$OSXALL]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$Project "shaderapiempty"
|
||
|
{
|
||
|
$Folder "Source Files"
|
||
|
{
|
||
|
$File "shaderapiempty.cpp"
|
||
|
}
|
||
|
|
||
|
$Folder "Header Files"
|
||
|
{
|
||
|
$File "$SRCDIR\public\tier0\platform.h"
|
||
|
}
|
||
|
}
|