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.

44 lines
834 B

  1. //-----------------------------------------------------------------------------
  2. // HAMMER_LAUNCHER.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR ".."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Macro OUTBINNAME "hammer"
  9. $Include "$SRCDIR\vpc_scripts\source_exe_win_win32_base.vpc"
  10. $Configuration
  11. {
  12. $Compiler
  13. {
  14. $AdditionalOptions "/EHa"
  15. }
  16. $Linker [$WIN32]
  17. {
  18. $EnableLargeAddresses "Support Addresses Larger Than 2 Gigabytes (/LARGEADDRESSAWARE)"
  19. }
  20. }
  21. $Project "Hammer_launcher"
  22. {
  23. $Folder "Source Files"
  24. {
  25. -$File "$SRCDIR\public\tier0\memoverride.cpp"
  26. $File "main.cpp"
  27. }
  28. $Folder "Resources"
  29. {
  30. $File "hammer_launcher.rc"
  31. }
  32. $Folder "Link Libraries"
  33. {
  34. $Lib "$SRCDIR\lib\public\appframework"
  35. $Lib "$SRCDIR\lib\common\Steam"
  36. }
  37. }