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
825 B

  1. //-----------------------------------------------------------------------------
  2. // VBSP.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE,..\common,..\vmpi"
  14. $PreprocessorDefinitions "$BASE;MACRO_MATHLIB;PROTECTED_THINGS_DISABLE"
  15. $FloatingPointModel "Precise (/fp:precise)"
  16. }
  17. }
  18. $Project "traceperf"
  19. {
  20. $Folder "Source Files"
  21. {
  22. $File "stdafx.cpp"
  23. $File "traceperf.cpp"
  24. }
  25. $Folder "Header Files"
  26. {
  27. $File "stdafx.h"
  28. $File "$SRCDIR\public\vphysics_interface.h"
  29. }
  30. $Folder "Link Libraries"
  31. {
  32. $Lib appframework
  33. $Lib mathlib
  34. $Lib tier2
  35. $Lib tier3
  36. }
  37. }