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.

48 lines
847 B

  1. //-----------------------------------------------------------------------------
  2. // HEIGHT2SSBUMP.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 "Debug"
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE,..\common"
  14. }
  15. $Linker
  16. {
  17. $DebuggableAssembly "Runtime tracking and disable optimizations (/ASSEMBLYDEBUG)"
  18. }
  19. }
  20. $Configuration "Release"
  21. {
  22. $Compiler
  23. {
  24. $AdditionalIncludeDirectories "$BASE,..\common"
  25. }
  26. }
  27. $Project "Height2ssbump"
  28. {
  29. $Folder "Source Files"
  30. {
  31. -$File "$SRCDIR\public\tier0\memoverride.cpp"
  32. $File "height2ssbump.cpp"
  33. }
  34. $Folder "Link Libraries"
  35. {
  36. $Lib bitmap
  37. $Lib mathlib
  38. $Lib raytrace
  39. $Lib tier2
  40. }
  41. }