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.

62 lines
1.4 KiB

  1. //-----------------------------------------------------------------------------
  2. // VMPI.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
  8. $Configuration
  9. {
  10. $Compiler
  11. {
  12. $AdditionalIncludeDirectories "$BASE,..\common,zlib,.\"
  13. $PreprocessorDefinitions "$BASE;PROTECTED_THINGS_DISABLE;MPI"
  14. }
  15. }
  16. $Project "Vmpi"
  17. {
  18. $Folder "Source Files"
  19. {
  20. $File "$SRCDIR\public\filesystem_init.cpp"
  21. $File "..\common\filesystem_tools.cpp"
  22. $File "iphelpers.cpp"
  23. $File "loopback_channel.cpp"
  24. $File "messbuf.cpp"
  25. $File "ThreadedTCPSocket.cpp"
  26. $File "ThreadedTCPSocketEmu.cpp"
  27. $File "threadhelpers.cpp"
  28. $File "vmpi.cpp"
  29. $File "vmpi_distribute_tracker.cpp"
  30. $File "vmpi_distribute_work.cpp"
  31. $File "vmpi_distribute_work_sdk.cpp"
  32. $File "vmpi_distribute_work_default.cpp"
  33. $File "vmpi_filesystem.cpp"
  34. $File "vmpi_filesystem_internal.h"
  35. $File "vmpi_filesystem_master.cpp"
  36. $File "vmpi_filesystem_worker.cpp"
  37. }
  38. $Folder "Header Files"
  39. {
  40. $File "$SRCDIR\public\tier1\bitbuf.h"
  41. $File "ichannel.h"
  42. $File "iphelpers.h"
  43. $File "IThreadedTCPSocket.h"
  44. $File "loopback_channel.h"
  45. $File "messbuf.h"
  46. $File "tcpsocket.h"
  47. $File "ThreadedTCPSocketEmu.h"
  48. $File "threadhelpers.h"
  49. $File "vmpi.h"
  50. $File "vmpi_defs.h"
  51. $File "vmpi_filesystem.h"
  52. }
  53. $Folder "Link Libraries"
  54. {
  55. $File "ZLib.lib"
  56. }
  57. }