|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 | 2 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3 |
| - <ItemDefinitionGroup> |
4 |
| - <ClCompile> |
5 |
| - <AdditionalOptions>/std:c++20 %(AdditionalOptions)</AdditionalOptions> |
6 |
| - <LanguageStandard>stdcpp20</LanguageStandard> |
7 |
| - </ClCompile> |
8 |
| - </ItemDefinitionGroup> |
9 |
| - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
10 |
| - <ClCompile> |
11 |
| - <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
12 |
| - <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |
13 |
| - <WarningLevel>Level3</WarningLevel> |
14 |
| - <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |
15 |
| - <Optimization>Disabled</Optimization> |
16 |
| - <!-- LanguageStandard specification here is redundant if the general ItemDefinitionGroup above is used, but can be kept for clarity --> |
17 |
| - <LanguageStandard>stdcpp20</LanguageStandard> |
18 |
| - </ClCompile> |
19 | 3 | <ItemGroup Label="ProjectConfigurations">
|
20 | 4 | <ProjectConfiguration Include="Debug|Win32">
|
21 | 5 | <Configuration>Debug</Configuration>
|
|
82 | 66 | <LinkIncremental>true</LinkIncremental>
|
83 | 67 | </PropertyGroup>
|
84 | 68 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
85 |
| - <LinkIncremental>true</LinkIncremental> |
| 69 | + <LinkIncremental>false</LinkIncremental> |
86 | 70 | </PropertyGroup>
|
87 | 71 | <PropertyGroup Label="Configuration">
|
88 | 72 | <ConfigurationType>Application</ConfigurationType>
|
89 | 73 | <PlatformToolset>v142</PlatformToolset>
|
90 | 74 | <LanguageStandard>stdcpp20</LanguageStandard>
|
91 | 75 | </PropertyGroup>
|
92 |
| - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
93 |
| - <ClCompile> |
94 |
| - <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
95 |
| - <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |
96 |
| - <WarningLevel>Level3</WarningLevel> |
97 |
| - <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |
98 |
| - <Optimization>Disabled</Optimization> |
99 |
| - <LanguageStandard>stdcpp20</LanguageStandard> |
100 |
| - </ClCompile> |
101 |
| - <Link> |
102 |
| - <TargetMachine>MachineX86</TargetMachine> |
103 |
| - <GenerateDebugInformation>true</GenerateDebugInformation> |
104 |
| - <SubSystem>Console</SubSystem> |
105 |
| - </Link> |
106 |
| - </ItemDefinitionGroup> |
107 |
| - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
| 76 | + <ItemDefinitionGroup> |
108 | 77 | <ClCompile>
|
109 |
| - <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
110 |
| - <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |
111 |
| - <WarningLevel>Level3</WarningLevel> |
112 |
| - <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |
113 |
| - <LanguageStandard>stdcpp20</LanguageStandard> |
| 78 | + <AdditionalOptions>/std:c++20 %(AdditionalOptions)</AdditionalOptions> |
| 79 | + <LanguageStandard>stdcpp20 |
| 80 | + |
| 81 | +</LanguageStandard> |
114 | 82 | </ClCompile>
|
115 |
| - <Link> |
116 |
| - <TargetMachine>MachineX86</TargetMachine> |
117 |
| - <GenerateDebugInformation>true</GenerateDebugInformation> |
118 |
| - <SubSystem>Console</SubSystem> |
119 |
| - <EnableCOMDATFolding>true</EnableCOMDATFolding> |
120 |
| - <OptimizeReferences>true</OptimizeReferences> |
121 |
| - </Link> |
122 | 83 | </ItemDefinitionGroup>
|
123 | 84 | <ItemGroup>
|
124 | 85 | <ClCompile Include="src\console_logger.cpp" />
|
|
0 commit comments