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.

55 lines
1.3 KiB

  1. //-----------------------------------------------------------------------------
  2. // matchmaking_cstrike15.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro OUTBINNAME "matchmaking"
  7. $Include "matchmaking_cstrike15_inc.vpc"
  8. $Configuration
  9. {
  10. $Compiler
  11. {
  12. $PreprocessorDefinitions "$BASE;MATCHMAKING_DLL"
  13. }
  14. }
  15. $Configuration "Debug"
  16. {
  17. $General
  18. {
  19. $OutputDirectory ".\Debug_$GAMENAME$PLATSUBDIR" [$WINDOWS||$POSIX]
  20. $IntermediateDirectory ".\Debug_$GAMENAME$PLATSUBDIR" [$WINDOWS||$POSIX]
  21. $OutputDirectory ".\Debug_$GAMENAME_360" [$X360]
  22. $IntermediateDirectory ".\Debug_$GAMENAME_360" [$X360]
  23. $OutputDirectory ".\Debug_$GAMENAME_PS3" [$PS3]
  24. $IntermediateDirectory ".\Debug_$GAMENAME_PS3" [$PS3]
  25. }
  26. }
  27. $Configuration "Release"
  28. {
  29. $General
  30. {
  31. $OutputDirectory ".\Release_$GAMENAME$PLATSUBDIR" [$WINDOWS||$POSIX]
  32. $IntermediateDirectory ".\Release_$GAMENAME$PLATSUBDIR" [$WINDOWS||$POSIX]
  33. $OutputDirectory ".\Release_$GAMENAME_360" [$X360]
  34. $IntermediateDirectory ".\Release_$GAMENAME_360" [$X360]
  35. $OutputDirectory ".\Release_$GAMENAME_PS3" [$PS3]
  36. $IntermediateDirectory ".\Release_$GAMENAME_PS3" [$PS3]
  37. }
  38. }
  39. $Project "Matchmaking (CSGO)"
  40. {
  41. $Folder "Link Libraries"
  42. {
  43. $Lib matchmakingbase
  44. }
  45. }