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.

68 lines
1.2 KiB

  1. //-----------------------------------------------------------------------------
  2. // VTEX_DLL.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. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE,..\common"
  14. $PreprocessorDefinitions "$BASE;VTEX_DLL;VTEX_DLL_EXPORTS;PROTECTED_THINGS_DISABLE"
  15. }
  16. $Linker
  17. {
  18. $SystemLibraries "iconv" [$OSXALL]
  19. }
  20. }
  21. $Configuration "Debug"
  22. {
  23. $General
  24. {
  25. $OutputDirectory ".\Debug_dll" [$WINDOWS]
  26. $IntermediateDirectory ".\Debug_dll" [$WINDOWS]
  27. }
  28. }
  29. $Configuration "Release"
  30. {
  31. $General
  32. {
  33. $OutputDirectory ".\Release_dll" [$WINDOWS]
  34. $IntermediateDirectory ".\Release_dll" [$WINDOWS]
  35. }
  36. }
  37. $Project "Vtex_dll"
  38. {
  39. $Folder "Source Files"
  40. {
  41. $File "..\common\cmdlib.cpp"
  42. $File "$SRCDIR\public\filesystem_helpers.cpp"
  43. $File "$SRCDIR\public\filesystem_init.cpp"
  44. $File "..\common\filesystem_tools.cpp"
  45. $File "vtex.cpp"
  46. }
  47. $Folder "Header Files"
  48. {
  49. $File "$SRCDIR\public\ivtex.h"
  50. }
  51. $Folder "Link Libraries"
  52. {
  53. $Lib bitmap
  54. $Lib mathlib
  55. $Lib tier2
  56. $Lib vtf
  57. }
  58. }