summary refs log tree commit diff stats
path: root/Source/Source.vcxproj
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Source.vcxproj')
-rw-r--r--Source/Source.vcxproj13
1 files changed, 9 insertions, 4 deletions
diff --git a/Source/Source.vcxproj b/Source/Source.vcxproj index 5aaa0b0..c63c664 100644 --- a/Source/Source.vcxproj +++ b/Source/Source.vcxproj
@@ -84,7 +84,7 @@
84 </PropertyGroup> 84 </PropertyGroup>
85 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 85 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
86 <ClCompile> 86 <ClCompile>
87 <PrecompiledHeader>NotUsing</PrecompiledHeader> 87 <PrecompiledHeader>Create</PrecompiledHeader>
88 <WarningLevel>Level3</WarningLevel> 88 <WarningLevel>Level3</WarningLevel>
89 <Optimization>Disabled</Optimization> 89 <Optimization>Disabled</Optimization>
90 <SDLCheck>true</SDLCheck> 90 <SDLCheck>true</SDLCheck>
@@ -92,6 +92,7 @@
92 <ConformanceMode>true</ConformanceMode> 92 <ConformanceMode>true</ConformanceMode>
93 <LanguageStandard>stdcpp17</LanguageStandard> 93 <LanguageStandard>stdcpp17</LanguageStandard>
94 <TreatWarningAsError>true</TreatWarningAsError> 94 <TreatWarningAsError>true</TreatWarningAsError>
95 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
95 </ClCompile> 96 </ClCompile>
96 <Link> 97 <Link>
97 <SubSystem>Windows</SubSystem> 98 <SubSystem>Windows</SubSystem>
@@ -100,7 +101,7 @@
100 </ItemDefinitionGroup> 101 </ItemDefinitionGroup>
101 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 102 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
102 <ClCompile> 103 <ClCompile>
103 <PrecompiledHeader>NotUsing</PrecompiledHeader> 104 <PrecompiledHeader>Create</PrecompiledHeader>
104 <WarningLevel>Level3</WarningLevel> 105 <WarningLevel>Level3</WarningLevel>
105 <Optimization>Disabled</Optimization> 106 <Optimization>Disabled</Optimization>
106 <SDLCheck>true</SDLCheck> 107 <SDLCheck>true</SDLCheck>
@@ -109,6 +110,7 @@
109 <LanguageStandard>stdcpp17</LanguageStandard> 110 <LanguageStandard>stdcpp17</LanguageStandard>
110 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> 111 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
111 <TreatWarningAsError>true</TreatWarningAsError> 112 <TreatWarningAsError>true</TreatWarningAsError>
113 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
112 </ClCompile> 114 </ClCompile>
113 <Link> 115 <Link>
114 <SubSystem>Windows</SubSystem> 116 <SubSystem>Windows</SubSystem>
@@ -117,7 +119,7 @@
117 </ItemDefinitionGroup> 119 </ItemDefinitionGroup>
118 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 120 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
119 <ClCompile> 121 <ClCompile>
120 <PrecompiledHeader>NotUsing</PrecompiledHeader> 122 <PrecompiledHeader>Create</PrecompiledHeader>
121 <WarningLevel>Level3</WarningLevel> 123 <WarningLevel>Level3</WarningLevel>
122 <Optimization>MaxSpeed</Optimization> 124 <Optimization>MaxSpeed</Optimization>
123 <FunctionLevelLinking>true</FunctionLevelLinking> 125 <FunctionLevelLinking>true</FunctionLevelLinking>
@@ -127,6 +129,7 @@
127 <ConformanceMode>true</ConformanceMode> 129 <ConformanceMode>true</ConformanceMode>
128 <LanguageStandard>stdcpp17</LanguageStandard> 130 <LanguageStandard>stdcpp17</LanguageStandard>
129 <TreatWarningAsError>true</TreatWarningAsError> 131 <TreatWarningAsError>true</TreatWarningAsError>
132 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
130 </ClCompile> 133 </ClCompile>
131 <Link> 134 <Link>
132 <SubSystem>Windows</SubSystem> 135 <SubSystem>Windows</SubSystem>
@@ -137,7 +140,7 @@
137 </ItemDefinitionGroup> 140 </ItemDefinitionGroup>
138 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 141 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
139 <ClCompile> 142 <ClCompile>
140 <PrecompiledHeader>NotUsing</PrecompiledHeader> 143 <PrecompiledHeader>Create</PrecompiledHeader>
141 <WarningLevel>Level3</WarningLevel> 144 <WarningLevel>Level3</WarningLevel>
142 <Optimization>MaxSpeed</Optimization> 145 <Optimization>MaxSpeed</Optimization>
143 <FunctionLevelLinking>true</FunctionLevelLinking> 146 <FunctionLevelLinking>true</FunctionLevelLinking>
@@ -148,6 +151,7 @@
148 <LanguageStandard>stdcpp17</LanguageStandard> 151 <LanguageStandard>stdcpp17</LanguageStandard>
149 <TreatWarningAsError>true</TreatWarningAsError> 152 <TreatWarningAsError>true</TreatWarningAsError>
150 <RuntimeLibrary>MultiThreaded</RuntimeLibrary> 153 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
154 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
151 </ClCompile> 155 </ClCompile>
152 <Link> 156 <Link>
153 <SubSystem>Windows</SubSystem> 157 <SubSystem>Windows</SubSystem>
@@ -160,6 +164,7 @@
160 <ClInclude Include="ChallengeRandomizer.h" /> 164 <ClInclude Include="ChallengeRandomizer.h" />
161 <ClInclude Include="Memory.h" /> 165 <ClInclude Include="Memory.h" />
162 <ClInclude Include="MemoryException.h" /> 166 <ClInclude Include="MemoryException.h" />
167 <ClInclude Include="pch.h" />
163 <ClInclude Include="Puzzle.h" /> 168 <ClInclude Include="Puzzle.h" />
164 <ClInclude Include="Panels.h" /> 169 <ClInclude Include="Panels.h" />
165 <ClInclude Include="PuzzleSerializer.h" /> 170 <ClInclude Include="PuzzleSerializer.h" />