Team Fortress 2 Source Code as on 22/4/2020
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.
|
|
//----------------------------------------------------------------------------- // DATACACHE.VPC // // Project Script //-----------------------------------------------------------------------------
$macro SRCDIR ".." $Macro OUTBINDIR "$SRCDIR\..\game\bin"
$include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
$Configuration { $Linker { $SystemLibraries "iconv" [$OSXALL] } $Compiler { $PreprocessorDefinitions "$BASE;MDLCACHE_DLL_EXPORT" } }
$Project "datacache" { $Folder "Source Files" { $File "datacache.cpp" $File "mdlcache.cpp" $File "$SRCDIR\public\studio.cpp" $File "$SRCDIR\public\studio_virtualmodel.cpp" $File "..\common\studiobyteswap.cpp" }
$Folder "Header Files" { $File "datacache.h" $File "datacache_common.h" $File "$SRCDIR\public\studio.h" $File "..\common\studiobyteswap.h" }
$Folder "Interface" { $File "$SRCDIR\public\datacache\idatacache.h" $File "$SRCDIR\public\datacache\imdlcache.h" }
$folder "Link Libraries" { $Lib tier2 $Lib tier3 } }
|