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. // VRAD_LAUNCHER.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Macro OUTBINNAME "vrad"
  9. $Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
  10. $Configuration
  11. {
  12. $Compiler
  13. {
  14. $Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)"
  15. $PrecompiledHeaderFile "$(IntDir)/vrad_launcher.pch"
  16. }
  17. $Linker [$WIN32]
  18. {
  19. $EnableLargeAddresses "Support Addresses Larger Than 2 Gigabytes (/LARGEADDRESSAWARE)"
  20. }
  21. }
  22. $Project "Vrad_launcher"
  23. {
  24. $Folder "Source Files"
  25. {
  26. -$File "$SRCDIR\public\tier0\memoverride.cpp"
  27. $File "vrad_launcher.cpp"
  28. $File "StdAfx.cpp"
  29. {
  30. $Configuration
  31. {
  32. $Compiler
  33. {
  34. $Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)"
  35. }
  36. }
  37. }
  38. }
  39. $Folder "Header Files"
  40. {
  41. $File "$SRCDIR\public\tier1\interface.h"
  42. $File "$SRCDIR\public\ivraddll.h"
  43. $File "StdAfx.h"
  44. }
  45. }