filesystem_dll.vcxproj 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Debug|Win32">
  5. <Configuration>Debug</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{FFD738F7-96F0-445C-81EA-551665EF53D1}</ProjectGuid>
  15. <RootNamespace>filesystem_dll</RootNamespace>
  16. <Keyword>Win32Proj</Keyword>
  17. <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
  18. </PropertyGroup>
  19. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  21. <ConfigurationType>DynamicLibrary</ConfigurationType>
  22. <CharacterSet>Unicode</CharacterSet>
  23. <WholeProgramOptimization>true</WholeProgramOptimization>
  24. <PlatformToolset>v141</PlatformToolset>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  27. <ConfigurationType>DynamicLibrary</ConfigurationType>
  28. <CharacterSet>Unicode</CharacterSet>
  29. <PlatformToolset>v141</PlatformToolset>
  30. </PropertyGroup>
  31. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  32. <ImportGroup Label="ExtensionSettings">
  33. </ImportGroup>
  34. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  35. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  36. <Import Project="..\common.props" />
  37. </ImportGroup>
  38. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  39. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  40. <Import Project="..\common.props" />
  41. </ImportGroup>
  42. <PropertyGroup Label="UserMacros" />
  43. <PropertyGroup>
  44. <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
  45. <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
  46. <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(TEMP)\$(SolutionName)\$(Configuration)\</OutDir>
  47. <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
  48. <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
  49. </PropertyGroup>
  50. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  51. <ClCompile>
  52. <Optimization>Disabled</Optimization>
  53. <AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  54. <PreprocessorDefinitions>BOOST_FILEYSTEM_INCLUDE_IOSTREAM;WIN32;_DEBUG;_WINDOWS;_USRDLL;FILESYSTEM_DLL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  55. <MinimalRebuild>true</MinimalRebuild>
  56. <ExceptionHandling>Async</ExceptionHandling>
  57. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  58. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  59. <PrecompiledHeader>
  60. </PrecompiledHeader>
  61. <WarningLevel>Level4</WarningLevel>
  62. </ClCompile>
  63. <Link>
  64. <GenerateDebugInformation>true</GenerateDebugInformation>
  65. <SubSystem>Windows</SubSystem>
  66. <TargetMachine>MachineX86</TargetMachine>
  67. </Link>
  68. </ItemDefinitionGroup>
  69. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  70. <ClCompile>
  71. <Optimization>MaxSpeed</Optimization>
  72. <IntrinsicFunctions>true</IntrinsicFunctions>
  73. <AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  74. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;FILESYSTEM_DLL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  75. <ExceptionHandling>Async</ExceptionHandling>
  76. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  77. <FunctionLevelLinking>true</FunctionLevelLinking>
  78. <PrecompiledHeader>
  79. </PrecompiledHeader>
  80. <WarningLevel>Level4</WarningLevel>
  81. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  82. </ClCompile>
  83. <Link>
  84. <GenerateDebugInformation>true</GenerateDebugInformation>
  85. <SubSystem>Windows</SubSystem>
  86. <OptimizeReferences>true</OptimizeReferences>
  87. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  88. <TargetMachine>MachineX86</TargetMachine>
  89. </Link>
  90. </ItemDefinitionGroup>
  91. <ItemGroup>
  92. <ClCompile Include="..\..\..\src\codecvt_error_category.cpp" />
  93. <ClCompile Include="..\..\..\src\operations.cpp" />
  94. <ClCompile Include="..\..\..\src\path.cpp" />
  95. <ClCompile Include="..\..\..\src\path_traits.cpp" />
  96. <ClCompile Include="..\..\..\src\portability.cpp" />
  97. <ClCompile Include="..\..\..\src\unique_path.cpp" />
  98. <ClCompile Include="..\..\..\src\utf8_codecvt_facet.cpp" />
  99. <ClCompile Include="..\..\..\src\windows_file_codecvt.cpp" />
  100. </ItemGroup>
  101. <ItemGroup>
  102. <ProjectReference Include="..\system_dll\system_dll.vcxproj">
  103. <Project>{f94ccadd-a90b-480c-a304-c19d015d36b1}</Project>
  104. <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
  105. </ProjectReference>
  106. </ItemGroup>
  107. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  108. <ImportGroup Label="ExtensionTargets">
  109. </ImportGroup>
  110. </Project>