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.

54 lines
1.0 KiB

  1. //-----------------------------------------------------------------------------
  2. // GLVIEW.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_exe_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE;..\common"
  14. $PreprocessorDefinitions "$BASE;PROTECTED_THINGS_DISABLE"
  15. }
  16. $Linker
  17. {
  18. $AdditionalDependencies "$BASE glu32.lib opengl32.lib odbc32.lib odbccp32.lib winmm.lib"
  19. }
  20. }
  21. $Project "Glview"
  22. {
  23. $Folder "Source Files"
  24. {
  25. $File "glview.cpp"
  26. $Folder "common files"
  27. {
  28. $File "..\common\cmdlib.cpp"
  29. $File "$SRCDIR\public\filesystem_helpers.cpp"
  30. $File "$SRCDIR\public\filesystem_init.cpp"
  31. $File "..\common\filesystem_tools.cpp"
  32. $File "..\common\physdll.cpp"
  33. }
  34. }
  35. $Folder "Header Files"
  36. {
  37. $File "..\common\cmdlib.h"
  38. $File "glos.h"
  39. $File "$SRCDIR\public\mathlib\mathlib.h"
  40. }
  41. $Folder "Link Libraries"
  42. {
  43. $Lib mathlib
  44. $Lib tier2
  45. }
  46. }