Skip to content

Commit 617fb1c

Browse files
authored
Update teapot.vcxproj
1 parent dd6c950 commit 617fb1c

File tree

1 file changed

+6
-45
lines changed

1 file changed

+6
-45
lines changed

teapot.vcxproj

+6-45
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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>
193
<ItemGroup Label="ProjectConfigurations">
204
<ProjectConfiguration Include="Debug|Win32">
215
<Configuration>Debug</Configuration>
@@ -82,43 +66,20 @@
8266
<LinkIncremental>true</LinkIncremental>
8367
</PropertyGroup>
8468
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
85-
<LinkIncremental>true</LinkIncremental>
69+
<LinkIncremental>false</LinkIncremental>
8670
</PropertyGroup>
8771
<PropertyGroup Label="Configuration">
8872
<ConfigurationType>Application</ConfigurationType>
8973
<PlatformToolset>v142</PlatformToolset>
9074
<LanguageStandard>stdcpp20</LanguageStandard>
9175
</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>
10877
<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>
11482
</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>
12283
</ItemDefinitionGroup>
12384
<ItemGroup>
12485
<ClCompile Include="src\console_logger.cpp" />

0 commit comments

Comments
 (0)