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.

43 lines
789 B

  1. //-----------------------------------------------------------------------------
  2. // GETMIRROR.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\devtools\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)"
  14. $PrecompiledHeaderFile "Debug/getmirror.pch"
  15. $EnableC++Exceptions "Yes (/EHsc)"
  16. }
  17. }
  18. $Project "Getmirror"
  19. {
  20. $Folder "Source Files"
  21. {
  22. $File "getmirror.cpp"
  23. $File "StdAfx.cpp"
  24. {
  25. $Configuration
  26. {
  27. $Compiler
  28. {
  29. $Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)"
  30. }
  31. }
  32. }
  33. }
  34. $Folder "Header Files"
  35. {
  36. $File "StdAfx.h"
  37. }
  38. }