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.

60 lines
1.3 KiB

  1. //-----------------------------------------------------------------------------
  2. // CAPTIONCOMPILER.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE,..\common,$SRCDIR\game\shared,.\"
  14. $PreprocessorDefinitions "$BASE;captioncompiler"
  15. }
  16. }
  17. $Project "Captioncompiler"
  18. {
  19. $Folder "Source Files"
  20. {
  21. $File "captioncompiler.cpp"
  22. $File "$SRCDIR\common\compiledcaptionswap.cpp"
  23. $File "..\common\filesystem_tools.cpp"
  24. }
  25. $Folder "Header Files"
  26. {
  27. $File "cbase.h"
  28. $File "..\common\filesystem_tools.h"
  29. }
  30. $Folder "Shared Code"
  31. {
  32. $File "..\common\cmdlib.cpp"
  33. $File "..\common\cmdlib.h"
  34. $File "$SRCDIR\public\filesystem_helpers.cpp"
  35. $File "$SRCDIR\public\filesystem_helpers.h"
  36. $File "$SRCDIR\public\filesystem_init.cpp"
  37. $File "$SRCDIR\public\filesystem_init.h"
  38. $File "$SRCDIR\public\mathlib\mathlib.h"
  39. $File "..\common\pacifier.cpp"
  40. $File "..\common\pacifier.h"
  41. $File "..\common\scriplib.cpp"
  42. $File "..\common\scriplib.h"
  43. $File "$SRCDIR\public\stringregistry.cpp"
  44. $File "$SRCDIR\public\stringregistry.h"
  45. }
  46. $Folder "Link Libraries"
  47. {
  48. $Lib appframework
  49. $Lib mathlib
  50. $Lib tier2
  51. $Lib tier3
  52. }
  53. }