2020-07-18 12:10:19 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<VCProjectVersion>16.0</VCProjectVersion>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<ProjectGuid>{9A3431E3-4727-5FED-9C18-CCD300C2760E}</ProjectGuid>
|
2020-07-18 12:10:19 +00:00
|
|
|
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
|
<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>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<Import Project="../toml++.props" />
|
2020-07-18 12:10:19 +00:00
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
|
<ClCompile>
|
|
|
|
|
<AdditionalIncludeDirectories>..\tests;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
<ExceptionHandling>Sync</ExceptionHandling>
|
|
|
|
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
|
|
|
|
<PrecompiledHeaderFile>tests.h</PrecompiledHeaderFile>
|
|
|
|
|
<PreprocessorDefinitions>TOML_UNRELEASED_FEATURES=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
<PreprocessorDefinitions Condition="'%(ExceptionHandling)'=='false'">_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<PreprocessorDefinitions Condition="'%(ExceptionHandling)'=='false'">SHOULD_HAVE_EXCEPTIONS=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
<PreprocessorDefinitions Condition="'%(ExceptionHandling)'!='false'">SHOULD_HAVE_EXCEPTIONS=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2020-07-18 12:10:19 +00:00
|
|
|
|
<LanguageStandard>stdcpp17</LanguageStandard>
|
2020-08-20 11:03:14 +00:00
|
|
|
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
2020-07-18 12:10:19 +00:00
|
|
|
|
</ClCompile>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<PropertyGroup>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<LocalDebuggerWorkingDirectory>..\..\tests\</LocalDebuggerWorkingDirectory>
|
2020-07-18 12:10:19 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<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">
|
2020-07-18 12:10:19 +00:00
|
|
|
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
|
|
</ClCompile>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<ClCompile Include="..\..\tests\impl_toml.cpp">
|
2020-07-18 12:10:19 +00:00
|
|
|
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
|
|
</ClCompile>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<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">
|
2020-07-18 12:10:19 +00:00
|
|
|
|
<PrecompiledHeader>Create</PrecompiledHeader>
|
|
|
|
|
</ClCompile>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<ClCompile Include="..\..\tests\unicode.cpp" />
|
2020-07-27 22:04:52 +00:00
|
|
|
|
<ClCompile Include="..\..\tests\user_feedback.cpp" />
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<ClCompile Include="..\..\tests\windows_compat.cpp" />
|
2020-07-18 12:10:19 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<Natvis Include="..\toml++.natvis" />
|
2020-07-18 12:10:19 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<ClInclude Include="..\..\tests\catch2.h" />
|
|
|
|
|
<ClInclude Include="..\..\tests\evil_macros.h" />
|
|
|
|
|
<ClInclude Include="..\..\tests\settings.h" />
|
|
|
|
|
<ClInclude Include="..\..\tests\tests.h" />
|
|
|
|
|
<ClInclude Include="..\..\tests\tloptional.h" />
|
2020-07-18 12:10:19 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-07-25 17:37:30 +00:00
|
|
|
|
<None Include="..\..\tests\meson.build" />
|
2020-07-18 12:10:19 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
</Project>
|