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.

53 lines
1.1 KiB

  1. //-----------------------------------------------------------------------------
  2. // MKENTITYPATCH.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"
  14. $PreprocessorDefinitions "$BASE;DONT_PROTECT_FILEIO_FUNCTIONS"
  15. }
  16. }
  17. $Project "mkentitypatch"
  18. {
  19. $Folder "Source Files"
  20. {
  21. $File "mkentitypatch.cpp"
  22. }
  23. $Folder "External"
  24. {
  25. $File "$SRCDIR\utils\common\bsplib.cpp"
  26. $File "$SRCDIR\utils\common\filesystem_tools.cpp"
  27. $File "$SRCDIR\utils\common\scriplib.cpp"
  28. $File "$SRCDIR\utils\common\cmdlib.cpp"
  29. $File "$SRCDIR\public\filesystem_helpers.cpp"
  30. $File "$SRCDIR\public\lumpfiles.cpp"
  31. $File "$SRCDIR\public\zip_utils.cpp"
  32. }
  33. $Folder "External Header Files"
  34. {
  35. $File "$SRCDIR\utils\common\bsplib.h"
  36. $File "$SRCDIR\public\lumpfiles.h"
  37. $File "$SRCDIR\public\filesystem_helpers.h"
  38. }
  39. $Folder "Link Libraries"
  40. {
  41. $Lib appframework
  42. $Lib mathlib
  43. $Lib tier2
  44. $Lib "$LIBCOMMON/lzma"
  45. }
  46. }