2018-02-27 10:18:05 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
|
<ProjectConfiguration Include="Debug|Win32">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<ProjectGuid>{B98C92B7-2874-4537-9D46-D14E5C237F04}</ProjectGuid>
|
|
|
|
|
<RootNamespace>vcpkglib</RootNamespace>
|
|
|
|
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
|
|
|
|
<PlatformToolset>v140</PlatformToolset>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
|
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
|
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<DISABLE_METRICS Condition="'$(DISABLE_METRICS)' == ''">0</DISABLE_METRICS>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Label="Shared">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
2018-10-31 07:40:38 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
|
|
<IntDir>$(SolutionDir)msbuild.x86.debug\$(ProjectName)\</IntDir>
|
|
|
|
|
<OutDir>$(SolutionDir)msbuild.x86.debug\</OutDir>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
|
|
<OutDir>$(SolutionDir)msbuild.x86.release\</OutDir>
|
|
|
|
|
<IntDir>$(SolutionDir)msbuild.x86.release\$(ProjectName)\</IntDir>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
<IntDir>$(SolutionDir)msbuild.x64.debug\$(ProjectName)\</IntDir>
|
|
|
|
|
<OutDir>$(SolutionDir)msbuild.x64.debug\</OutDir>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
<IntDir>$(SolutionDir)msbuild.x64.release\$(ProjectName)\</IntDir>
|
|
|
|
|
<OutDir>$(SolutionDir)msbuild.x64.release\</OutDir>
|
|
|
|
|
</PropertyGroup>
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
|
|
<ClCompile>
|
[vcpkg] Clean up CMake build system (#10834)
There are quite a few changes to the CMake build system packaged up into
one set here:
* Added `toolsrc/cmake/utilities.cmake`, which contains the following:
* `vcpkg_detect_compiler` -- get the name of the C++ compiler, as one
of {gcc, clang, msvc}
* `vcpkg_detect_standard_library` -- get the name of the standard
library we're linking to, as one of {libstdc++, libc++, msvc-stl}
* `vcpkg_detect_std_filesystem` -- figure out how to link and call
into C++17's filesystem; whether one needs to link to `stdc++fs` or
`c++fs`, and whether to use `<filesystem>` or
`<experimental/filesystem>`.
* Added a `VCPKG_WARNINGS_AS_ERRORS`, split off from
`VCPKG_DEVELOPMENT_WARNINGS`, which allows one to use the development
warnings without passing -Werror
* Rename `DEFINE_DISABLE_METRICS` to `VCPKG_DISABLE_METRICS` -- the
former will now print a deprecation message and set the latter.
* Now, print a deprecation message on `WERROR`; it doesn't do anything
since the behavior it requested is now the default.
* Pass `-std=c++17` if the compiler allows it, instead of `-std=c++1z`
* Do some code movement
* Pass `USE_STD_FILESYSTEM` if possible, instead of only on minGW
* Renamed to `VCPKG_USE_STD_FILESYSTEM`
Additionally, we now pass `/W4` in Debug mode on x86 in the Visual
Studio build system; this brings it in line with the CMake build system,
and the x64 Visual Studio build system.
And finally, we make some minor code changes to support compiling in
VCPKG_DEVELOPMENT_WARNINGS mode.
2020-04-15 13:08:50 +08:00
|
|
|
|
<WarningLevel>Level4</WarningLevel>
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<Optimization>Disabled</Optimization>
|
|
|
|
|
<SDLCheck>true</SDLCheck>
|
|
|
|
|
<AdditionalIncludeDirectories>..\include</AdditionalIncludeDirectories>
|
[vcpkg] Clean up CMake build system (#10834)
There are quite a few changes to the CMake build system packaged up into
one set here:
* Added `toolsrc/cmake/utilities.cmake`, which contains the following:
* `vcpkg_detect_compiler` -- get the name of the C++ compiler, as one
of {gcc, clang, msvc}
* `vcpkg_detect_standard_library` -- get the name of the standard
library we're linking to, as one of {libstdc++, libc++, msvc-stl}
* `vcpkg_detect_std_filesystem` -- figure out how to link and call
into C++17's filesystem; whether one needs to link to `stdc++fs` or
`c++fs`, and whether to use `<filesystem>` or
`<experimental/filesystem>`.
* Added a `VCPKG_WARNINGS_AS_ERRORS`, split off from
`VCPKG_DEVELOPMENT_WARNINGS`, which allows one to use the development
warnings without passing -Werror
* Rename `DEFINE_DISABLE_METRICS` to `VCPKG_DISABLE_METRICS` -- the
former will now print a deprecation message and set the latter.
* Now, print a deprecation message on `WERROR`; it doesn't do anything
since the behavior it requested is now the default.
* Pass `-std=c++17` if the compiler allows it, instead of `-std=c++1z`
* Do some code movement
* Pass `USE_STD_FILESYSTEM` if possible, instead of only on minGW
* Renamed to `VCPKG_USE_STD_FILESYSTEM`
Additionally, we now pass `/W4` in Debug mode on x86 in the Visual
Studio build system; this brings it in line with the CMake build system,
and the x64 Visual Studio build system.
And finally, we make some minor code changes to support compiling in
VCPKG_DEVELOPMENT_WARNINGS mode.
2020-04-15 13:08:50 +08:00
|
|
|
|
<PreprocessorDefinitions>VCPKG_DISABLE_METRICS=$(DISABLE_METRICS);VCPKG_VERSION=$(VCPKG_VERSION);_MBCS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<AdditionalOptions>/std:c++latest %(AdditionalOptions)</AdditionalOptions>
|
|
|
|
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
|
|
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
|
|
|
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
|
|
|
|
<MinimalRebuild>false</MinimalRebuild>
|
|
|
|
|
</ClCompile>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
<ClCompile>
|
|
|
|
|
<WarningLevel>Level4</WarningLevel>
|
|
|
|
|
<Optimization>Disabled</Optimization>
|
|
|
|
|
<SDLCheck>true</SDLCheck>
|
|
|
|
|
<AdditionalIncludeDirectories>..\include</AdditionalIncludeDirectories>
|
[vcpkg] Clean up CMake build system (#10834)
There are quite a few changes to the CMake build system packaged up into
one set here:
* Added `toolsrc/cmake/utilities.cmake`, which contains the following:
* `vcpkg_detect_compiler` -- get the name of the C++ compiler, as one
of {gcc, clang, msvc}
* `vcpkg_detect_standard_library` -- get the name of the standard
library we're linking to, as one of {libstdc++, libc++, msvc-stl}
* `vcpkg_detect_std_filesystem` -- figure out how to link and call
into C++17's filesystem; whether one needs to link to `stdc++fs` or
`c++fs`, and whether to use `<filesystem>` or
`<experimental/filesystem>`.
* Added a `VCPKG_WARNINGS_AS_ERRORS`, split off from
`VCPKG_DEVELOPMENT_WARNINGS`, which allows one to use the development
warnings without passing -Werror
* Rename `DEFINE_DISABLE_METRICS` to `VCPKG_DISABLE_METRICS` -- the
former will now print a deprecation message and set the latter.
* Now, print a deprecation message on `WERROR`; it doesn't do anything
since the behavior it requested is now the default.
* Pass `-std=c++17` if the compiler allows it, instead of `-std=c++1z`
* Do some code movement
* Pass `USE_STD_FILESYSTEM` if possible, instead of only on minGW
* Renamed to `VCPKG_USE_STD_FILESYSTEM`
Additionally, we now pass `/W4` in Debug mode on x86 in the Visual
Studio build system; this brings it in line with the CMake build system,
and the x64 Visual Studio build system.
And finally, we make some minor code changes to support compiling in
VCPKG_DEVELOPMENT_WARNINGS mode.
2020-04-15 13:08:50 +08:00
|
|
|
|
<PreprocessorDefinitions>VCPKG_DISABLE_METRICS=$(DISABLE_METRICS);VCPKG_VERSION=$(VCPKG_VERSION);_MBCS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<AdditionalOptions>/std:c++latest %(AdditionalOptions)</AdditionalOptions>
|
|
|
|
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
|
|
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
|
|
|
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
|
|
|
|
<MinimalRebuild>false</MinimalRebuild>
|
|
|
|
|
</ClCompile>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
|
|
<ClCompile>
|
|
|
|
|
<WarningLevel>Level3</WarningLevel>
|
|
|
|
|
<Optimization>MaxSpeed</Optimization>
|
|
|
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
|
|
<SDLCheck>true</SDLCheck>
|
|
|
|
|
<AdditionalIncludeDirectories>..\include</AdditionalIncludeDirectories>
|
[vcpkg] Clean up CMake build system (#10834)
There are quite a few changes to the CMake build system packaged up into
one set here:
* Added `toolsrc/cmake/utilities.cmake`, which contains the following:
* `vcpkg_detect_compiler` -- get the name of the C++ compiler, as one
of {gcc, clang, msvc}
* `vcpkg_detect_standard_library` -- get the name of the standard
library we're linking to, as one of {libstdc++, libc++, msvc-stl}
* `vcpkg_detect_std_filesystem` -- figure out how to link and call
into C++17's filesystem; whether one needs to link to `stdc++fs` or
`c++fs`, and whether to use `<filesystem>` or
`<experimental/filesystem>`.
* Added a `VCPKG_WARNINGS_AS_ERRORS`, split off from
`VCPKG_DEVELOPMENT_WARNINGS`, which allows one to use the development
warnings without passing -Werror
* Rename `DEFINE_DISABLE_METRICS` to `VCPKG_DISABLE_METRICS` -- the
former will now print a deprecation message and set the latter.
* Now, print a deprecation message on `WERROR`; it doesn't do anything
since the behavior it requested is now the default.
* Pass `-std=c++17` if the compiler allows it, instead of `-std=c++1z`
* Do some code movement
* Pass `USE_STD_FILESYSTEM` if possible, instead of only on minGW
* Renamed to `VCPKG_USE_STD_FILESYSTEM`
Additionally, we now pass `/W4` in Debug mode on x86 in the Visual
Studio build system; this brings it in line with the CMake build system,
and the x64 Visual Studio build system.
And finally, we make some minor code changes to support compiling in
VCPKG_DEVELOPMENT_WARNINGS mode.
2020-04-15 13:08:50 +08:00
|
|
|
|
<PreprocessorDefinitions>VCPKG_DISABLE_METRICS=$(DISABLE_METRICS);VCPKG_VERSION=$(VCPKG_VERSION);_MBCS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<AdditionalOptions>/std:c++latest %(AdditionalOptions)</AdditionalOptions>
|
|
|
|
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
|
|
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
|
|
|
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
|
|
|
|
</ClCompile>
|
|
|
|
|
<Link>
|
|
|
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
|
|
<OptimizeReferences>true</OptimizeReferences>
|
|
|
|
|
</Link>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
<ClCompile>
|
|
|
|
|
<WarningLevel>Level3</WarningLevel>
|
|
|
|
|
<Optimization>MaxSpeed</Optimization>
|
|
|
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
|
|
<SDLCheck>true</SDLCheck>
|
|
|
|
|
<AdditionalIncludeDirectories>..\include</AdditionalIncludeDirectories>
|
[vcpkg] Clean up CMake build system (#10834)
There are quite a few changes to the CMake build system packaged up into
one set here:
* Added `toolsrc/cmake/utilities.cmake`, which contains the following:
* `vcpkg_detect_compiler` -- get the name of the C++ compiler, as one
of {gcc, clang, msvc}
* `vcpkg_detect_standard_library` -- get the name of the standard
library we're linking to, as one of {libstdc++, libc++, msvc-stl}
* `vcpkg_detect_std_filesystem` -- figure out how to link and call
into C++17's filesystem; whether one needs to link to `stdc++fs` or
`c++fs`, and whether to use `<filesystem>` or
`<experimental/filesystem>`.
* Added a `VCPKG_WARNINGS_AS_ERRORS`, split off from
`VCPKG_DEVELOPMENT_WARNINGS`, which allows one to use the development
warnings without passing -Werror
* Rename `DEFINE_DISABLE_METRICS` to `VCPKG_DISABLE_METRICS` -- the
former will now print a deprecation message and set the latter.
* Now, print a deprecation message on `WERROR`; it doesn't do anything
since the behavior it requested is now the default.
* Pass `-std=c++17` if the compiler allows it, instead of `-std=c++1z`
* Do some code movement
* Pass `USE_STD_FILESYSTEM` if possible, instead of only on minGW
* Renamed to `VCPKG_USE_STD_FILESYSTEM`
Additionally, we now pass `/W4` in Debug mode on x86 in the Visual
Studio build system; this brings it in line with the CMake build system,
and the x64 Visual Studio build system.
And finally, we make some minor code changes to support compiling in
VCPKG_DEVELOPMENT_WARNINGS mode.
2020-04-15 13:08:50 +08:00
|
|
|
|
<PreprocessorDefinitions>VCPKG_DISABLE_METRICS=$(DISABLE_METRICS);VCPKG_VERSION=$(VCPKG_VERSION);_MBCS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<AdditionalOptions>/std:c++latest %(AdditionalOptions)</AdditionalOptions>
|
|
|
|
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
|
|
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
|
|
|
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
|
|
|
|
</ClCompile>
|
|
|
|
|
<Link>
|
|
|
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
|
|
<OptimizeReferences>true</OptimizeReferences>
|
|
|
|
|
</Link>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ClInclude Include="..\include\pch.h" />
|
2018-07-07 17:55:03 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\archives.h" />
|
2018-07-09 21:29:37 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\cache.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\checks.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\chrono.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\cofffilereader.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\cstringview.h" />
|
2018-06-20 07:59:27 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\downloads.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\enums.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\expected.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\files.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\graphs.h" />
|
2018-07-07 17:55:03 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\hash.h" />
|
2020-03-26 06:18:10 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\ignore_errors.h" />
|
2020-04-18 09:16:20 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\json.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\lazy.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\lineinfo.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\machinetype.h" />
|
2020-04-18 09:16:20 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\parse.h" />
|
2020-05-15 03:49:31 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\pragmas.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\optional.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\sortedvector.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\span.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\stringliteral.h" />
|
2018-06-20 08:51:20 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\stringrange.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\strings.h" />
|
2019-07-07 04:29:46 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\stringview.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\system.debug.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\system.h" />
|
2019-07-07 04:29:46 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\system.print.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\system.process.h" />
|
2020-04-18 09:16:20 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\unicode.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\util.h" />
|
2019-07-07 04:29:46 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\view.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\base\zstringview.h" />
|
2020-02-13 06:25:47 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\binarycaching.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\binaryparagraph.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\build.h" />
|
2020-06-17 02:58:11 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\buildenvironment.h" />
|
2020-02-08 03:24:35 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\cmakevars.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\commands.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\dependencies.h" />
|
2020-02-08 03:24:35 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\export.chocolatey.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\export.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\export.ifw.h" />
|
2020-04-07 05:36:17 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\export.prefab.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\globalstate.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\help.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\input.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\install.h" />
|
[vcpkg manifest] Manifest Implementation (#11757)
==== Changes Related to manifests ====
* Add the `manifests` feature flag
* This only says whether we look for a `vcpkg.json` in the cwd, not
whether we support parsing manifests (for ports, for example)
* Changes to the manifests RFC
* `"authors"` -> `"maintainers"`
* `--x-classic-mode` -> `-manifests` \in `vcpkg_feature_flags`
* reserve `"core"` in addition to `"default"`, since that's already
reserved for features
* Add a small helper note about what identifiers must look like
* `<license-string>`: SPDX v3.8 -> v3.9
* `"feature"."description"` is allowed to be an array of strings as well
* `"version"` -> `"version-string"` for forward-compat with versions
RFC
* Add the `--feature-flags` option
* Add the ability to turn off feature flags via passing
`-<feature-flag>` to `VCPKG_FEATURE_FLAGS` or `--feature-flags`
* Add CMake toolchain support for manifests
* Requires either:
* a feature flag of `manifests` in either `Env{VCPKG_FEATURE_FLAGS}`
or `VCPKG_FEATURE_FLAGS`
* Passing the `VCPKG_ENABLE_MANIFESTS` option
* The toolchain will install your packages to
`${VCPKG_MANIFEST_DIR}/vcpkg_installed`.
* Add MSBuild `vcpkg integrate install` support for manifests
* Requires `VcpkgEnableManifest` to be true
* `vcpkg create` creates a port that has a `vcpkg.json` instead of a
`CONTROL`
* argparse, abseil, 3fd, and avisynthplus ports switched to manifest
from CONTROL
* Add support for `--x-manifest-root`, as well as code for finding it if
not passed
* Add support for parsing manifests!
* Add a filesystem lock!
==== Important Changes which are somewhat unrelated to manifests ====
* Rename `logicexpression.{h,cpp}` to `platform-expression.{h,cpp}`
* Add `PlatformExpression` type which takes the place of the old logic
expression
* Split the parsing of platform expressions from checking whether
they're true or not
* Eagerly parse PlatformExpressions as opposed to leaving them as
strings
* Add checking for feature flag consistency
* i.e., if `-binarycaching` is passed, you shouldn't be passing
`--binarysource`
* Add the `Json::Reader` type which, with the help of user-defined
visitors, converts JSON to your internal type
* VcpkgArgParser: place the switch names into a constant as opposed to
using magic constants
* In general update the parsing code so that this ^ works
* Add `Port-Version` fields to CONTROL files
* This replaces the existing practice of
`Version: <my-version>-<port-version>`
==== Smaller changes ====
* small drive-by cleanups to some CMake
* `${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}` ->
`${CURRENT_INSTALLED_DIR}`
* Remove `-analyze` when compiling with clang-cl, since that's not a
supported flag (vcpkg's build system)
* Add a message about which compiler is detected by vcpkg's build
system machinery
* Fix `Expected::then`
* Convert `""` to `{}` for `std::string` and `fs::path`, to avoid a
`strlen` (additionally, `.empty()` instead of `== ""`, and `.clear()`)
* Add `Strings::strto` which converts strings to numeric types
* Support built-in arrays and `StringView` for `Strings::join`
* Add `operator<` and friends to `StringView`
* Add `substr` to `StringView`
* SourceParagraphParser gets some new errors
2020-07-01 01:40:18 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\platform-expression.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\metrics.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\packagespec.h" />
|
2020-02-08 03:24:35 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\paragraphparser.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\paragraphparseresult.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\paragraphs.h" />
|
2020-02-08 03:24:35 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\portfileprovider.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\postbuildlint.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\postbuildlint.buildtype.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\remove.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\sourceparagraph.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\statusparagraph.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\statusparagraphs.h" />
|
2020-02-08 03:24:35 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\textrowcol.h" />
|
2018-07-09 21:29:37 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\tools.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\triplet.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\update.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\userconfig.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\vcpkgcmdarguments.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\vcpkglib.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\vcpkgpaths.h" />
|
|
|
|
|
<ClInclude Include="..\include\vcpkg\versiont.h" />
|
2018-06-20 08:51:20 +08:00
|
|
|
|
<ClInclude Include="..\include\vcpkg\visualstudio.h" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ClCompile Include="..\src\pch.cpp">
|
|
|
|
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
|
|
|
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
|
|
|
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
|
|
|
|
|
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
|
|
|
|
|
</ClCompile>
|
2018-07-07 17:55:03 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\archives.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\checks.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\chrono.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\cofffilereader.cpp" />
|
2018-06-20 07:59:27 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\downloads.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\enums.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\files.cpp" />
|
2018-07-07 17:55:03 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\hash.cpp" />
|
2020-04-18 09:16:20 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\json.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\machinetype.cpp" />
|
2020-04-18 09:16:20 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\parse.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\strings.cpp" />
|
2019-04-09 14:26:18 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\stringview.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\system.cpp" />
|
2019-04-09 14:26:18 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\system.print.cpp" />
|
2020-02-09 14:45:36 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\system.process.cpp" />
|
2020-04-18 09:16:20 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\base\unicode.cpp" />
|
2020-02-13 06:25:47 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\binarycaching.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\binaryparagraph.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\build.cpp" />
|
2020-06-17 02:58:11 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\buildenvironment.cpp" />
|
2020-02-04 06:22:52 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\cmakevars.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.autocomplete.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.buildexternal.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.cache.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.ci.cpp" />
|
2020-05-28 09:40:23 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.ciclean.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.contact.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.create.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.dependinfo.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.edit.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.env.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.exportifw.cpp" />
|
[vcpkg manifest] Manifest Implementation (#11757)
==== Changes Related to manifests ====
* Add the `manifests` feature flag
* This only says whether we look for a `vcpkg.json` in the cwd, not
whether we support parsing manifests (for ports, for example)
* Changes to the manifests RFC
* `"authors"` -> `"maintainers"`
* `--x-classic-mode` -> `-manifests` \in `vcpkg_feature_flags`
* reserve `"core"` in addition to `"default"`, since that's already
reserved for features
* Add a small helper note about what identifiers must look like
* `<license-string>`: SPDX v3.8 -> v3.9
* `"feature"."description"` is allowed to be an array of strings as well
* `"version"` -> `"version-string"` for forward-compat with versions
RFC
* Add the `--feature-flags` option
* Add the ability to turn off feature flags via passing
`-<feature-flag>` to `VCPKG_FEATURE_FLAGS` or `--feature-flags`
* Add CMake toolchain support for manifests
* Requires either:
* a feature flag of `manifests` in either `Env{VCPKG_FEATURE_FLAGS}`
or `VCPKG_FEATURE_FLAGS`
* Passing the `VCPKG_ENABLE_MANIFESTS` option
* The toolchain will install your packages to
`${VCPKG_MANIFEST_DIR}/vcpkg_installed`.
* Add MSBuild `vcpkg integrate install` support for manifests
* Requires `VcpkgEnableManifest` to be true
* `vcpkg create` creates a port that has a `vcpkg.json` instead of a
`CONTROL`
* argparse, abseil, 3fd, and avisynthplus ports switched to manifest
from CONTROL
* Add support for `--x-manifest-root`, as well as code for finding it if
not passed
* Add support for parsing manifests!
* Add a filesystem lock!
==== Important Changes which are somewhat unrelated to manifests ====
* Rename `logicexpression.{h,cpp}` to `platform-expression.{h,cpp}`
* Add `PlatformExpression` type which takes the place of the old logic
expression
* Split the parsing of platform expressions from checking whether
they're true or not
* Eagerly parse PlatformExpressions as opposed to leaving them as
strings
* Add checking for feature flag consistency
* i.e., if `-binarycaching` is passed, you shouldn't be passing
`--binarysource`
* Add the `Json::Reader` type which, with the help of user-defined
visitors, converts JSON to your internal type
* VcpkgArgParser: place the switch names into a constant as opposed to
using magic constants
* In general update the parsing code so that this ^ works
* Add `Port-Version` fields to CONTROL files
* This replaces the existing practice of
`Version: <my-version>-<port-version>`
==== Smaller changes ====
* small drive-by cleanups to some CMake
* `${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}` ->
`${CURRENT_INSTALLED_DIR}`
* Remove `-analyze` when compiling with clang-cl, since that's not a
supported flag (vcpkg's build system)
* Add a message about which compiler is detected by vcpkg's build
system machinery
* Fix `Expected::then`
* Convert `""` to `{}` for `std::string` and `fs::path`, to avoid a
`strlen` (additionally, `.empty()` instead of `== ""`, and `.clear()`)
* Add `Strings::strto` which converts strings to numeric types
* Support built-in arrays and `StringView` for `Strings::join`
* Add `operator<` and friends to `StringView`
* Add `substr` to `StringView`
* SourceParagraphParser gets some new errors
2020-07-01 01:40:18 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.format-manifest.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.integrate.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.list.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.owns.cpp" />
|
2019-09-07 02:35:56 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.porthistory.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.portsdiff.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.search.cpp" />
|
2020-04-18 06:49:59 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.setinstalled.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.upgrade.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.version.cpp" />
|
2018-09-19 11:55:35 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\commands.xvsinstances.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\dependencies.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\export.cpp" />
|
2019-06-12 09:09:55 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\export.chocolatey.cpp" />
|
2020-04-07 05:36:17 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\export.prefab.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\globalstate.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\help.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\input.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\install.cpp" />
|
[vcpkg manifest] Manifest Implementation (#11757)
==== Changes Related to manifests ====
* Add the `manifests` feature flag
* This only says whether we look for a `vcpkg.json` in the cwd, not
whether we support parsing manifests (for ports, for example)
* Changes to the manifests RFC
* `"authors"` -> `"maintainers"`
* `--x-classic-mode` -> `-manifests` \in `vcpkg_feature_flags`
* reserve `"core"` in addition to `"default"`, since that's already
reserved for features
* Add a small helper note about what identifiers must look like
* `<license-string>`: SPDX v3.8 -> v3.9
* `"feature"."description"` is allowed to be an array of strings as well
* `"version"` -> `"version-string"` for forward-compat with versions
RFC
* Add the `--feature-flags` option
* Add the ability to turn off feature flags via passing
`-<feature-flag>` to `VCPKG_FEATURE_FLAGS` or `--feature-flags`
* Add CMake toolchain support for manifests
* Requires either:
* a feature flag of `manifests` in either `Env{VCPKG_FEATURE_FLAGS}`
or `VCPKG_FEATURE_FLAGS`
* Passing the `VCPKG_ENABLE_MANIFESTS` option
* The toolchain will install your packages to
`${VCPKG_MANIFEST_DIR}/vcpkg_installed`.
* Add MSBuild `vcpkg integrate install` support for manifests
* Requires `VcpkgEnableManifest` to be true
* `vcpkg create` creates a port that has a `vcpkg.json` instead of a
`CONTROL`
* argparse, abseil, 3fd, and avisynthplus ports switched to manifest
from CONTROL
* Add support for `--x-manifest-root`, as well as code for finding it if
not passed
* Add support for parsing manifests!
* Add a filesystem lock!
==== Important Changes which are somewhat unrelated to manifests ====
* Rename `logicexpression.{h,cpp}` to `platform-expression.{h,cpp}`
* Add `PlatformExpression` type which takes the place of the old logic
expression
* Split the parsing of platform expressions from checking whether
they're true or not
* Eagerly parse PlatformExpressions as opposed to leaving them as
strings
* Add checking for feature flag consistency
* i.e., if `-binarycaching` is passed, you shouldn't be passing
`--binarysource`
* Add the `Json::Reader` type which, with the help of user-defined
visitors, converts JSON to your internal type
* VcpkgArgParser: place the switch names into a constant as opposed to
using magic constants
* In general update the parsing code so that this ^ works
* Add `Port-Version` fields to CONTROL files
* This replaces the existing practice of
`Version: <my-version>-<port-version>`
==== Smaller changes ====
* small drive-by cleanups to some CMake
* `${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}` ->
`${CURRENT_INSTALLED_DIR}`
* Remove `-analyze` when compiling with clang-cl, since that's not a
supported flag (vcpkg's build system)
* Add a message about which compiler is detected by vcpkg's build
system machinery
* Fix `Expected::then`
* Convert `""` to `{}` for `std::string` and `fs::path`, to avoid a
`strlen` (additionally, `.empty()` instead of `== ""`, and `.clear()`)
* Add `Strings::strto` which converts strings to numeric types
* Support built-in arrays and `StringView` for `Strings::join`
* Add `operator<` and friends to `StringView`
* Add `substr` to `StringView`
* SourceParagraphParser gets some new errors
2020-07-01 01:40:18 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\platform-expression.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\metrics.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\packagespec.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\paragraphparseresult.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\paragraphs.cpp" />
|
2020-02-04 06:22:52 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\portfileprovider.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\postbuildlint.buildtype.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\postbuildlint.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\remove.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\sourceparagraph.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\statusparagraph.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\statusparagraphs.cpp" />
|
2018-07-09 21:29:37 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\tools.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\triplet.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\update.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\userconfig.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\vcpkgcmdarguments.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\vcpkglib.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\vcpkgpaths.cpp" />
|
|
|
|
|
<ClCompile Include="..\src\vcpkg\versiont.cpp" />
|
2018-06-20 08:51:20 +08:00
|
|
|
|
<ClCompile Include="..\src\vcpkg\visualstudio.cpp" />
|
2018-02-27 10:18:05 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
|
</ImportGroup>
|
[vcpkg] Clean up CMake build system (#10834)
There are quite a few changes to the CMake build system packaged up into
one set here:
* Added `toolsrc/cmake/utilities.cmake`, which contains the following:
* `vcpkg_detect_compiler` -- get the name of the C++ compiler, as one
of {gcc, clang, msvc}
* `vcpkg_detect_standard_library` -- get the name of the standard
library we're linking to, as one of {libstdc++, libc++, msvc-stl}
* `vcpkg_detect_std_filesystem` -- figure out how to link and call
into C++17's filesystem; whether one needs to link to `stdc++fs` or
`c++fs`, and whether to use `<filesystem>` or
`<experimental/filesystem>`.
* Added a `VCPKG_WARNINGS_AS_ERRORS`, split off from
`VCPKG_DEVELOPMENT_WARNINGS`, which allows one to use the development
warnings without passing -Werror
* Rename `DEFINE_DISABLE_METRICS` to `VCPKG_DISABLE_METRICS` -- the
former will now print a deprecation message and set the latter.
* Now, print a deprecation message on `WERROR`; it doesn't do anything
since the behavior it requested is now the default.
* Pass `-std=c++17` if the compiler allows it, instead of `-std=c++1z`
* Do some code movement
* Pass `USE_STD_FILESYSTEM` if possible, instead of only on minGW
* Renamed to `VCPKG_USE_STD_FILESYSTEM`
Additionally, we now pass `/W4` in Debug mode on x86 in the Visual
Studio build system; this brings it in line with the CMake build system,
and the x64 Visual Studio build system.
And finally, we make some minor code changes to support compiling in
VCPKG_DEVELOPMENT_WARNINGS mode.
2020-04-15 13:08:50 +08:00
|
|
|
|
</Project>
|