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.

76 lines
2.3 KiB

  1. //-----------------------------------------------------------------------------
  2. // SOUNDEMITTERSYSTEM.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR ".."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
  9. $Configuration
  10. {
  11. $Linker
  12. {
  13. $SystemLibraries "iconv" [$OSXALL]
  14. }
  15. $Compiler
  16. {
  17. $AdditionalIncludeDirectories ".\;$BASE;$SRCDIR\game\shared"
  18. $PreprocessorDefinitions "$BASE;SOUNDEMITTERSYSTEM_EXPORTS;_WINDOWS;PROTECTED_THINGS_ENABLE"
  19. $PreprocessorDefinitions "$BASE;fopen=dont_use_fopen" [$WINDOWS]
  20. }
  21. }
  22. $Project "SoundEmitterSystem"
  23. {
  24. $Folder "Source Files"
  25. {
  26. $File "$SRCDIR\game\shared\interval.cpp"
  27. $File "soundemittersystembase.cpp"
  28. $File "$SRCDIR\public\SoundParametersInternal.cpp"
  29. }
  30. $Folder "Header Files"
  31. {
  32. $File "soundemittersystembase.h"
  33. $File "cbase.h"
  34. $File "$SRCDIR\game\shared\interval.h"
  35. }
  36. $Folder "Public Header Files"
  37. {
  38. $File "$SRCDIR\public\tier0\basetypes.h"
  39. $File "$SRCDIR\public\Color.h"
  40. $File "$SRCDIR\public\tier0\commonmacros.h"
  41. $File "$SRCDIR\public\tier0\dbg.h"
  42. $File "$SRCDIR\public\tier0\fasttimer.h"
  43. $File "$SRCDIR\public\filesystem.h"
  44. $File "$SRCDIR\public\appframework\IAppSystem.h"
  45. $File "$SRCDIR\public\tier0\icommandline.h"
  46. $File "$SRCDIR\public\engine\IEngineSound.h"
  47. $File "$SRCDIR\public\vstdlib\IKeyValuesSystem.h"
  48. $File "$SRCDIR\public\tier1\interface.h"
  49. $File "$SRCDIR\public\irecipientfilter.h"
  50. $File "$SRCDIR\public\SoundEmitterSystem\isoundemittersystembase.h"
  51. $File "$SRCDIR\public\tier1\KeyValues.h"
  52. $File "$SRCDIR\public\tier0\mem.h"
  53. $File "$SRCDIR\public\tier0\memdbgoff.h"
  54. $File "$SRCDIR\public\tier0\memdbgon.h"
  55. $File "$SRCDIR\public\tier0\platform.h"
  56. $File "$SRCDIR\public\tier0\protected_things.h"
  57. $File "$SRCDIR\public\vstdlib\random.h"
  58. $File "$SRCDIR\public\soundchars.h"
  59. $File "$SRCDIR\public\soundflags.h"
  60. $File "$SRCDIR\public\string_t.h"
  61. $File "$SRCDIR\public\tier1\strtools.h"
  62. $File "$SRCDIR\public\tier1\utlbuffer.h"
  63. $File "$SRCDIR\public\tier1\utldict.h"
  64. $File "$SRCDIR\public\tier1\utlmemory.h"
  65. $File "$SRCDIR\public\tier1\utlrbtree.h"
  66. $File "$SRCDIR\public\tier1\utlsymbol.h"
  67. $File "$SRCDIR\public\tier1\utlvector.h"
  68. $File "$SRCDIR\public\vstdlib\vstdlib.h"
  69. }
  70. }