filesystem_lib.vcxproj 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <ItemGroup>
  14. <ClCompile Include="..\..\..\src\codecvt_error_category.cpp" />
  15. <ClCompile Include="..\..\..\src\operations.cpp" />
  16. <ClCompile Include="..\..\..\src\path.cpp" />
  17. <ClCompile Include="..\..\..\src\path_traits.cpp" />
  18. <ClCompile Include="..\..\..\src\portability.cpp" />
  19. <ClCompile Include="..\..\..\src\unique_path.cpp" />
  20. <ClCompile Include="..\..\..\src\utf8_codecvt_facet.cpp" />
  21. <ClCompile Include="..\..\..\src\windows_file_codecvt.cpp" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\system_lib\system_lib.vcxproj">
  25. <Project>{3640605d-6f82-493d-879f-8f30762da554}</Project>
  26. </ProjectReference>
  27. </ItemGroup>
  28. <PropertyGroup Label="Globals">
  29. <ProjectGuid>{2C1770A4-4AC3-4102-9D36-E652DBB686D8}</ProjectGuid>
  30. <Keyword>Win32Proj</Keyword>
  31. <RootNamespace>filesystem_lib</RootNamespace>
  32. <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
  33. </PropertyGroup>
  34. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  36. <ConfigurationType>StaticLibrary</ConfigurationType>
  37. <UseDebugLibraries>true</UseDebugLibraries>
  38. <CharacterSet>Unicode</CharacterSet>
  39. <PlatformToolset>v141</PlatformToolset>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  42. <ConfigurationType>StaticLibrary</ConfigurationType>
  43. <UseDebugLibraries>false</UseDebugLibraries>
  44. <WholeProgramOptimization>true</WholeProgramOptimization>
  45. <CharacterSet>Unicode</CharacterSet>
  46. <PlatformToolset>v141</PlatformToolset>
  47. </PropertyGroup>
  48. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  49. <ImportGroup Label="ExtensionSettings">
  50. </ImportGroup>
  51. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  52. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  53. </ImportGroup>
  54. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  55. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  56. </ImportGroup>
  57. <PropertyGroup Label="UserMacros" />
  58. <PropertyGroup />
  59. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  60. <ClCompile>
  61. <PrecompiledHeader>
  62. </PrecompiledHeader>
  63. <WarningLevel>Level3</WarningLevel>
  64. <Optimization>Disabled</Optimization>
  65. <PreprocessorDefinitions>BOOST_ALL_NO_LIB;BOOST_ALL_STATIC_LINK;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  66. <AdditionalIncludeDirectories>../../../../..</AdditionalIncludeDirectories>
  67. </ClCompile>
  68. <Link>
  69. <SubSystem>Windows</SubSystem>
  70. <GenerateDebugInformation>true</GenerateDebugInformation>
  71. </Link>
  72. </ItemDefinitionGroup>
  73. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  74. <ClCompile>
  75. <WarningLevel>Level3</WarningLevel>
  76. <PrecompiledHeader>
  77. </PrecompiledHeader>
  78. <Optimization>MaxSpeed</Optimization>
  79. <FunctionLevelLinking>true</FunctionLevelLinking>
  80. <IntrinsicFunctions>true</IntrinsicFunctions>
  81. <PreprocessorDefinitions>BOOST_ALL_NO_LIB;BOOST_ALL_STATIC_LINK;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  82. <AdditionalIncludeDirectories>../../../../..</AdditionalIncludeDirectories>
  83. </ClCompile>
  84. <Link>
  85. <SubSystem>Windows</SubSystem>
  86. <GenerateDebugInformation>true</GenerateDebugInformation>
  87. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  88. <OptimizeReferences>true</OptimizeReferences>
  89. </Link>
  90. </ItemDefinitionGroup>
  91. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  92. <ImportGroup Label="ExtensionTargets">
  93. </ImportGroup>
  94. </Project>