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.

55 lines
1.0 KiB

  1. //-----------------------------------------------------------------------------
  2. // DATACACHE.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $macro SRCDIR ".."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
  9. $Configuration
  10. {
  11. $Linker
  12. {
  13. $SystemLibraries "iconv" [$OSXALL]
  14. }
  15. $Compiler
  16. {
  17. $PreprocessorDefinitions "$BASE;MDLCACHE_DLL_EXPORT"
  18. }
  19. }
  20. $Project "datacache"
  21. {
  22. $Folder "Source Files"
  23. {
  24. $File "datacache.cpp"
  25. $File "mdlcache.cpp"
  26. $File "$SRCDIR\public\studio.cpp"
  27. $File "$SRCDIR\public\studio_virtualmodel.cpp"
  28. $File "..\common\studiobyteswap.cpp"
  29. }
  30. $Folder "Header Files"
  31. {
  32. $File "datacache.h"
  33. $File "datacache_common.h"
  34. $File "$SRCDIR\public\studio.h"
  35. $File "..\common\studiobyteswap.h"
  36. }
  37. $Folder "Interface"
  38. {
  39. $File "$SRCDIR\public\datacache\idatacache.h"
  40. $File "$SRCDIR\public\datacache\imdlcache.h"
  41. }
  42. $folder "Link Libraries"
  43. {
  44. $Lib tier2
  45. $Lib tier3
  46. }
  47. }