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.

47 lines
891 B

  1. //-----------------------------------------------------------------------------
  2. // AppChooser.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
  9. $Configuration "Debug"
  10. {
  11. $Linker [$X360]
  12. {
  13. $AdditionalDependencies "$BASE xaudiod.lib xmediad.lib xnet.lib xonline.lib xmp.lib"
  14. }
  15. }
  16. $Configuration "Release"
  17. {
  18. $Linker [$X360]
  19. {
  20. $AdditionalDependencies "$BASE xaudio.lib xmedia.lib xnet.lib xonline.lib xmp.lib"
  21. }
  22. }
  23. $Project "AppChooser"
  24. {
  25. $Folder "Source Files"
  26. {
  27. $file "main.cpp"
  28. $file "$SRCDIR\public\vgui_controls\vgui_controls.cpp"
  29. }
  30. $Folder "Link Libraries"
  31. {
  32. $Lib appframework
  33. $Lib mathlib
  34. $Lib tier2
  35. $Lib tier3
  36. $Lib vtf
  37. $Lib bitmap
  38. $Lib vgui_controls
  39. $Lib vgui_surfacelib
  40. }
  41. }