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.

47 lines
875 B

  1. //-----------------------------------------------------------------------------
  2. // KVC.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 "..\common;$BASE"
  14. }
  15. }
  16. $Project "kvc"
  17. {
  18. $Folder "Source Files"
  19. {
  20. $File "kvc.cpp"
  21. $File "kvc_paintkit.cpp"
  22. }
  23. $Folder "Common Source Files"
  24. {
  25. $File "$SRCDIR\public\kevvaluescompiler.cpp"
  26. $File "..\common\filesystem_tools.cpp"
  27. $File "..\common\pacifier.cpp"
  28. }
  29. $Folder "Common Header Files"
  30. {
  31. $File "$SRCDIR\public\keyvaluescompiler.h"
  32. $File "..\common\filesystem_tools.h"
  33. $File "..\common\pacifier.h"
  34. }
  35. $Folder "Link Libraries"
  36. {
  37. $Lib appframework
  38. $Lib tier2
  39. }
  40. }