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.

60 lines
1.2 KiB

  1. //-----------------------------------------------------------------------------
  2. // SYNCFROMMIRROR.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\devtools\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_exe_win_win32_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)"
  14. $PrecompiledHeaderFile "Release/syncfrommirror.pch"
  15. $EnableC++Exceptions "Yes (/EHsc)"
  16. }
  17. }
  18. $Project "Syncfrommirror"
  19. {
  20. $Folder "Source Files"
  21. {
  22. -$File "$SRCDIR\public\tier0\memoverride.cpp"
  23. $File "Redir.cpp"
  24. $File "Redirect.cpp"
  25. $File "syncfrommirror.cpp"
  26. $File "syncfrommirror.rc"
  27. $File "syncfrommirrorDlg.cpp"
  28. $File "StdAfx.cpp"
  29. {
  30. $Configuration
  31. {
  32. $Compiler
  33. {
  34. $Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)"
  35. }
  36. }
  37. }
  38. }
  39. $Folder "Header Files"
  40. {
  41. $File "Redir.h"
  42. $File "Redirect.h"
  43. $File "Resource.h"
  44. $File "StdAfx.h"
  45. $File "syncfrommirror.h"
  46. $File "syncfrommirrorDlg.h"
  47. }
  48. $Folder "Resource Files"
  49. {
  50. $File "res\syncfrommirror.ico"
  51. $File "res\syncfrommirror.rc2"
  52. }
  53. }