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.

43 lines
764 B

  1. //-----------------------------------------------------------------------------
  2. // P4LIB.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,$SRCDIR\common\p4api"
  14. }
  15. $Linker
  16. {
  17. $AdditionalDependencies "$BASE wsock32.lib"
  18. }
  19. }
  20. $Project "P4lib"
  21. {
  22. $Folder "Source Files"
  23. {
  24. $File "p4.cpp"
  25. }
  26. $Folder "Header Files"
  27. {
  28. $File "$SRCDIR/public/p4lib/ip4.h"
  29. }
  30. $Folder "Link Libraries"
  31. {
  32. $File "$SRCDIR/lib/common/libclient.lib"
  33. $File "$SRCDIR/lib/common/librpc.lib"
  34. $File "$SRCDIR/lib/common/libsupp.lib"
  35. }
  36. }