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.

54 lines
1.0 KiB

  1. //-----------------------------------------------------------------------------
  2. // ACTBUSY.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. $Linker
  12. {
  13. $AdditionalDependencies "$BASE psapi.lib"
  14. }
  15. }
  16. $Project "Actbusy"
  17. {
  18. $Folder "Source Files"
  19. {
  20. $File "actbusydoc.cpp"
  21. $File "actbusytool.cpp"
  22. $File "$SRCDIR\public\interpolatortypes.cpp"
  23. $File "$SRCDIR\public\movieobjects\movieobjects.cpp"
  24. $File "$SRCDIR\public\registry.cpp"
  25. $File "$SRCDIR\public\vgui_controls\vgui_controls.cpp"
  26. }
  27. $Folder "Header Files"
  28. {
  29. $File "actbusydoc.h"
  30. $File "actbusytool.h"
  31. $File "$SRCDIR\public\interpolatortypes.h"
  32. }
  33. $Folder "Link Libraries"
  34. {
  35. $Lib dmxloader
  36. $Lib datamodel
  37. $Lib dme_controls
  38. $Lib dmserializers
  39. $Lib mathlib
  40. $Lib matsys_controls
  41. $Lib movieobjects
  42. $Lib sfmobjects
  43. $Lib tier2
  44. $Lib tier3
  45. $Lib toolutils
  46. $Lib vgui_controls
  47. }
  48. }