mirror of
https://github.com/marzer/tomlplusplus.git
synced 2025-02-25 15:41:02 +00:00
also added support for wide strings on Windows (closes #42): - added wide-string path arg overloads of `parse()` and `parse_file()` - added wide-string support to all relevant `table` and `array` ops - added `std::wstring` support to `node::value()` and `node::value_or()` - added `std::wstring` support to `node_view::value()` and `node_view::value_or()` - added wide-string overloads of `table::operator[]` - added wide-string overloads of `node_view::operator[]` - added `source_region::wide_path()` - added `TOML_WINDOWS_COMPAT` switch for explicitly enabling/disabling this stuff also: - fixed internal macro `assert_or_assume` leaking out of `toml_parser.hpp` - deprecated `node_view::get()` in favour of `node_view::node()` - minor documentation fixes - minor cleanup
107 lines
5.2 KiB
XML
107 lines
5.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" 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>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<VCProjectVersion>16.0</VCProjectVersion>
|
|
<ProjectGuid>{3B05742A-6512-4B11-8842-A1B9D1465B1F}</ProjectGuid>
|
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
<PlatformToolset>v142</PlatformToolset>
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
<PlatformToolset>v142</PlatformToolset>
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
<PlatformToolset>v142</PlatformToolset>
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
<PlatformToolset>v142</PlatformToolset>
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
</ImportGroup>
|
|
<Import Project="toml++.props" />
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<AdditionalIncludeDirectories>..\tests;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
<PreprocessorDefinitions>TOML_CHAR_8_STRINGS=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
<PreprocessorDefinitions>TOML_UNRELEASED_FEATURES=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
|
<PrecompiledHeaderFile>tests.h</PrecompiledHeaderFile>
|
|
<PreprocessorDefinitions Condition="'%(PrecompiledHeader)'=='Use'">USING_PCH=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
</ClCompile>
|
|
</ItemDefinitionGroup>
|
|
<PropertyGroup>
|
|
<LocalDebuggerWorkingDirectory>..\tests\</LocalDebuggerWorkingDirectory>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="..\tests\conformance_burntsushi_invalid.cpp" />
|
|
<ClCompile Include="..\tests\conformance_burntsushi_valid.cpp" />
|
|
<ClCompile Include="..\tests\conformance_iarna_invalid.cpp" />
|
|
<ClCompile Include="..\tests\conformance_iarna_valid.cpp" />
|
|
<ClCompile Include="..\tests\impl_catch2.cpp">
|
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
</ClCompile>
|
|
<ClCompile Include="..\tests\impl_toml.cpp">
|
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
</ClCompile>
|
|
<ClCompile Include="..\tests\manipulating_arrays.cpp" />
|
|
<ClCompile Include="..\tests\manipulating_tables.cpp" />
|
|
<ClCompile Include="..\tests\manipulating_parse_result.cpp" />
|
|
<ClCompile Include="..\tests\manipulating_values.cpp" />
|
|
<ClCompile Include="..\tests\parsing_arrays.cpp" />
|
|
<ClCompile Include="..\tests\parsing_booleans.cpp" />
|
|
<ClCompile Include="..\tests\parsing_comments.cpp" />
|
|
<ClCompile Include="..\tests\parsing_dates_and_times.cpp" />
|
|
<ClCompile Include="..\tests\parsing_floats.cpp" />
|
|
<ClCompile Include="..\tests\parsing_integers.cpp" />
|
|
<ClCompile Include="..\tests\parsing_key_value_pairs.cpp" />
|
|
<ClCompile Include="..\tests\parsing_spec_example.cpp" />
|
|
<ClCompile Include="..\tests\parsing_strings.cpp" />
|
|
<ClCompile Include="..\tests\parsing_tables.cpp" />
|
|
<ClCompile Include="..\tests\tests.cpp">
|
|
<PrecompiledHeader>Create</PrecompiledHeader>
|
|
</ClCompile>
|
|
<ClCompile Include="..\tests\unicode.cpp" />
|
|
<ClCompile Include="..\tests\unicode_generated.cpp" />
|
|
<ClCompile Include="..\tests\windows_compat.cpp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Natvis Include="toml++.natvis" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="..\tests\settings.h" />
|
|
<ClInclude Include="..\tests\tests.h" />
|
|
<ClInclude Include="..\tests\unicode.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\tests\meson.build" />
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
</Project> |