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.

57 lines
1.3 KiB

  1. //-----------------------------------------------------------------------------
  2. // PERFTEST.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_exe_win_win32_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE,..\..\utils\common,..\..\utils\matsysapp,."
  14. $PreprocessorDefinitions "$BASE;VECTOR;PROTECTED_THINGS_DISABLE"
  15. }
  16. $Linker
  17. {
  18. // $AdditionalDependencies "comctl32.lib winmm.lib"
  19. }
  20. }
  21. $Project "perftest"
  22. {
  23. $Folder "Source Files"
  24. {
  25. $File "..\..\utils\matsysapp\matsysapp.cpp"
  26. $File "perftest.cpp"
  27. $Folder "common files"
  28. {
  29. // $File "..\..\utils\common\bsplib.cpp"
  30. $File "..\..\utils\common\cmdlib.cpp"
  31. $File "$SRCDIR\public\filesystem_helpers.cpp"
  32. $File "$SRCDIR\public\filesystem_init.cpp"
  33. $File "..\..\utils\common\filesystem_tools.cpp"
  34. $File "..\..\utils\common\physdll.cpp"
  35. $File "..\..\utils\common\scriplib.cpp"
  36. }
  37. }
  38. $Folder "Header Files"
  39. {
  40. $File "$SRCDIR\public\vphysics_interface.h"
  41. $File "stdafx.h"
  42. }
  43. $Folder "Link Libraries"
  44. {
  45. // $DynamicFile "$SRCDIR\lib\public\appframework.lib"
  46. $DynamicFile "$SRCDIR\lib\public\mathlib.lib"
  47. $DynamicFile "$SRCDIR\lib\public\tier2.lib"
  48. }
  49. }