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.

64 lines
1.3 KiB

  1. //-----------------------------------------------------------------------------
  2. // COMMEDIT.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin\tools"
  8. $Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE,.\,..\common,$SRCDIR\game\shared"
  14. $PreprocessorDefinitions "$BASE;COMMEDIT_EXPORTS"
  15. }
  16. $Linker
  17. {
  18. $AdditionalDependencies "$BASE Psapi.lib"
  19. }
  20. }
  21. $Project "Commedit"
  22. {
  23. $Folder "Source Files"
  24. {
  25. $File "commeditdoc.cpp"
  26. $File "commedittool.cpp"
  27. $File "commentarynodebrowserpanel.cpp"
  28. $File "commentarypropertiespanel.cpp"
  29. $File "dmecommentarynodeentity.cpp"
  30. $File "$SRCDIR\public\interpolatortypes.cpp"
  31. $File "$SRCDIR\public\registry.cpp"
  32. $File "$SRCDIR\public\vgui_controls\vgui_controls.cpp"
  33. }
  34. $Folder "Header Files"
  35. {
  36. $File "commeditdoc.h"
  37. $File "commedittool.h"
  38. $File "commentarynodebrowserpanel.h"
  39. $File "commentarypropertiespanel.h"
  40. $File "dmecommentarynodeentity.h"
  41. $File "$SRCDIR\public\mathlib\mathlib.h"
  42. }
  43. $Folder "Link Libraries"
  44. {
  45. $Lib datamodel
  46. $Lib dme_controls
  47. $Lib dmserializers
  48. $Lib mathlib
  49. $Lib matsys_controls
  50. $Lib movieobjects
  51. $Lib sfmobjects
  52. $Lib tier2
  53. $Lib tier3
  54. $Lib toolutils
  55. $Lib vgui_controls
  56. }
  57. }