Counter Strike : Global Offensive Source Code
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.

56 lines
1001 B

  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_win32_base.vpc"
  10. $Configuration
  11. {
  12. $Compiler
  13. {
  14. $Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)"
  15. }
  16. }
  17. $Configuration
  18. {
  19. $Linker
  20. {
  21. $EnableLargeAddresses "Support Addresses Larger Than 2 Gigabytes (/LARGEADDRESSAWARE)"
  22. }
  23. }
  24. $Project "Vrad_launcher"
  25. {
  26. $Folder "Source Files"
  27. {
  28. -$File "$SRCDIR\public\tier0\memoverride.cpp"
  29. $File "vrad_launcher.cpp"
  30. $File "stdafx.cpp"
  31. {
  32. $Configuration
  33. {
  34. $Compiler
  35. {
  36. $Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)"
  37. }
  38. }
  39. }
  40. }
  41. $Folder "Header Files"
  42. {
  43. $File "$SRCDIR\public\tier1\interface.h"
  44. $File "$SRCDIR\public\ivraddll.h"
  45. $File "stdafx.h"
  46. }
  47. }