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.

76 lines
1.7 KiB

  1. //-----------------------------------------------------------------------------
  2. // FILESYSTEMOPENDIALOG.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
  10. {
  11. $Compiler
  12. {
  13. // Deprecated MBCS MFC libraries for VS 2013 (nafxcw.lib and nafxcwd.lib) can be downloaded from http://go.microsoft.com/?linkid=9832071
  14. $PreprocessorDefinitions "$BASE;NO_WARN_MBCS_MFC_DEPRECATION"
  15. $AdditionalIncludeDirectories "$BASE,..\common"
  16. $PreprocessorDefinitions "$BASE;;WINVER=0x502"
  17. $Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)"
  18. $PrecompiledHeaderFile "Debug/FileSystemOpenDialog.pch"
  19. $EnableC++Exceptions "Yes (/EHsc)"
  20. }
  21. }
  22. $Project "FileSystemOpenDialog"
  23. {
  24. $Folder "Source Files"
  25. {
  26. $File "$SRCDIR\public\tier0\afxmem_override.cpp"
  27. $File "FileDialogApp.cpp"
  28. $File "FileDialogApp.h"
  29. $File "FileSystemOpenDlg.cpp"
  30. $File "FileSystemOpenDlg.h"
  31. $File "$SRCDIR\common\IFileSystemOpenDialog.h"
  32. -$File "$SRCDIR\public\tier0\memoverride.cpp"
  33. $File "$SRCDIR\public\tier0\memoverride.cpp"
  34. {
  35. $Configuration
  36. {
  37. $Compiler
  38. {
  39. $PreprocessorDefinitions "$BASE;NO_MEMOVERRIDE_NEW_DELETE"
  40. $Create/UsePrecompiledHeader "Not Using Precompiled Headers"
  41. }
  42. }
  43. }
  44. $File "StdAfx.cpp"
  45. {
  46. $Configuration
  47. {
  48. $Compiler
  49. {
  50. $Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)"
  51. }
  52. }
  53. }
  54. }
  55. $Folder "Header Files"
  56. {
  57. $File "Resource.h"
  58. $File "StdAfx.h"
  59. }
  60. $Folder "Resource Files"
  61. {
  62. $File "FileSystemOpenDialog.rc"
  63. }
  64. $Folder "Link Libraries"
  65. {
  66. $Lib $LIBCOMMON/libjpeg
  67. }
  68. }