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.
38 lines
799 B
38 lines
799 B
//----------------------------------------------------------------------------- |
|
// SHADEREMPTY.VPC |
|
// |
|
// Project Script |
|
//----------------------------------------------------------------------------- |
|
|
|
$Macro SRCDIR "..\.." |
|
$Macro OUTBINDIR "$LIBPUBLIC" |
|
|
|
$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" |
|
} |
|
}
|
|
|