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.

47 lines
1.1 KiB

  1. //-----------------------------------------------------------------------------
  2. // RPT.VPC [Remote Perf Testing]
  3. //
  4. // This project is used to copy files onto the customer machine to run
  5. // specific tests. It also launches steam in a special way to make it
  6. // not blow away those files.
  7. //
  8. // Project Script
  9. //-----------------------------------------------------------------------------
  10. $MacroRequired "PLATSUBDIR"
  11. $Macro SRCDIR "..\.."
  12. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  13. $Include "$SRCDIR\vpc_scripts\source_exe_con_win32_base.vpc"
  14. $Project
  15. {
  16. $Folder "Source Files"
  17. {
  18. -$File "$SRCDIR\public\tier0\memoverride.cpp"
  19. }
  20. $Folder "Link Libraries"
  21. {
  22. -$File "$SRCDIR\lib\public\tier0.lib" [!$WIN64]
  23. -$File "$SRCDIR\lib\public\tier1.lib" [!$WIN64]
  24. -$File "$SRCDIR\lib\public\vstdlib.lib" [!$WIN64]
  25. -$File "$SRCDIR\lib\public$PLATSUBDIR\tier0.lib" [$WIN64]
  26. -$File "$SRCDIR\lib\public$PLATSUBDIR\tier1.lib" [$WIN64]
  27. -$File "$SRCDIR\lib\public$PLATSUBDIR\vstdlib.lib" [$WIN64]
  28. }
  29. }
  30. $Project "rpt"
  31. {
  32. $Folder "Source Files"
  33. {
  34. $File "rpt.cpp"
  35. }
  36. $Folder "Link Libraries"
  37. {
  38. }
  39. }