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.

70 lines
2.3 KiB

  1. //-----------------------------------------------------------------------------
  2. // SHADERLIB.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $macro SRCDIR "..\.."
  7. $include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
  8. $Configuration
  9. {
  10. $Compiler
  11. {
  12. $AdditionalIncludeDirectories "$BASE;..\"
  13. $PreprocessorDefinitions "$BASE;FAST_MATERIALVAR_ACCESS"
  14. $PreprocessorDefinitions "$BASE;fopen=dont_use_fopen" [$WINDOWS]
  15. }
  16. }
  17. $Project "shaderlib"
  18. {
  19. $Folder "Source Files"
  20. {
  21. $File "BaseShader.cpp"
  22. $File "ShaderDLL.cpp"
  23. $File "shaderlib_cvar.cpp"
  24. }
  25. $Folder "Header Files"
  26. {
  27. $File "shaderDLL_Global.h"
  28. $File "shaderlib_cvar.h"
  29. $File "$SRCDIR\public\shaderlib\BaseShader.h"
  30. $File "$SRCDIR\public\tier0\basetypes.h"
  31. $File "$SRCDIR\public\tier0\commonmacros.h"
  32. $File "$SRCDIR\public\shaderlib\cshader.h"
  33. $File "$SRCDIR\public\tier0\dbg.h"
  34. $File "$SRCDIR\public\tier0\fasttimer.h"
  35. $File "$SRCDIR\public\appframework\IAppSystem.h"
  36. $File "$SRCDIR\public\tier0\icommandline.h"
  37. $File "$SRCDIR\public\icvar.h"
  38. $File "$SRCDIR\public\materialsystem\imaterial.h"
  39. $File "$SRCDIR\public\materialsystem\imaterialsystem.h"
  40. $File "$SRCDIR\public\materialsystem\imaterialsystemhardwareconfig.h"
  41. $File "$SRCDIR\public\materialsystem\imaterialvar.h"
  42. $File "$SRCDIR\public\materialsystem\imesh.h"
  43. $File "$SRCDIR\public\materialsystem\IShader.h"
  44. $File "$SRCDIR\public\materialsystem\ishaderapi.h"
  45. $File "..\IShaderSystem.h"
  46. $File "$SRCDIR\public\materialsystem\itexture.h"
  47. $File "$SRCDIR\public\materialsystem\materialsystem_config.h"
  48. $File "$SRCDIR\public\mathlib\mathlib.h"
  49. $File "$SRCDIR\public\tier0\memdbgoff.h"
  50. $File "$SRCDIR\public\tier0\memdbgon.h"
  51. $File "$SRCDIR\public\tier0\platform.h"
  52. $File "$SRCDIR\public\tier0\protected_things.h"
  53. $File "$SRCDIR\public\shaderlib\ShaderDLL.h"
  54. $File "$SRCDIR\public\string_t.h"
  55. $File "$SRCDIR\public\tier1\strtools.h"
  56. $File "$SRCDIR\public\tier1\utlmemory.h"
  57. $File "$SRCDIR\public\tier1\utlvector.h"
  58. $File "$SRCDIR\public\mathlib\vector.h"
  59. $File "$SRCDIR\public\mathlib\vector2d.h"
  60. $File "$SRCDIR\public\mathlib\vector4d.h"
  61. $File "$SRCDIR\public\mathlib\vmatrix.h"
  62. $File "$SRCDIR\public\mathlib\vplane.h"
  63. $File "$SRCDIR\public\vstdlib\vstdlib.h"
  64. }
  65. }