Skip to content

Commit 5873a04

Browse files
committed
transfered to VS17
1 parent 93a4bcf commit 5873a04

15 files changed

+4204
-2432
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ obj/
22
bin/HeadRoomRS_debug.exp
33
bin/
44
*.db
5+
.vs/

HeadRoom.vcxproj

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -23,29 +23,30 @@
2323
<Keyword>Win32Proj</Keyword>
2424
<RootNamespace>HeadRoom</RootNamespace>
2525
<ProjectName>HeadRoomRS</ProjectName>
26+
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
2627
</PropertyGroup>
2728
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2829
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
2930
<ConfigurationType>Application</ConfigurationType>
3031
<CharacterSet>Unicode</CharacterSet>
31-
<PlatformToolset>v140</PlatformToolset>
32+
<PlatformToolset>v141</PlatformToolset>
3233
</PropertyGroup>
3334
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
3435
<ConfigurationType>Application</ConfigurationType>
3536
<CharacterSet>Unicode</CharacterSet>
36-
<PlatformToolset>v140</PlatformToolset>
37+
<PlatformToolset>v141</PlatformToolset>
3738
</PropertyGroup>
3839
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
3940
<ConfigurationType>Application</ConfigurationType>
4041
<CharacterSet>Unicode</CharacterSet>
4142
<WholeProgramOptimization>true</WholeProgramOptimization>
42-
<PlatformToolset>v140</PlatformToolset>
43+
<PlatformToolset>v141</PlatformToolset>
4344
</PropertyGroup>
4445
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4546
<ConfigurationType>Application</ConfigurationType>
4647
<CharacterSet>Unicode</CharacterSet>
4748
<WholeProgramOptimization>true</WholeProgramOptimization>
48-
<PlatformToolset>v140</PlatformToolset>
49+
<PlatformToolset>v141</PlatformToolset>
4950
</PropertyGroup>
5051
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5152
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
@@ -188,11 +189,8 @@
188189
<ClCompile Include="src\Frustum.cpp" />
189190
<ClCompile Include="src\Grid.cpp" />
190191
<ClCompile Include="src\Linef.cpp" />
191-
<ClCompile Include="src\ofAdvCamera.cpp" />
192-
<ClCompile Include="src\ofAdvEasyCam.cpp" />
193192
<ClCompile Include="src\OrthoCamera.cpp" />
194193
<ClCompile Include="src\Planef.cpp" />
195-
<ClCompile Include="src\Properties.cpp" />
196194
<ClCompile Include="src\TrackedBlob.cpp" />
197195
<ClCompile Include="src\TrackingClient.cpp" />
198196
<ClCompile Include="src\TrackingNetworkManager.cpp" />
@@ -262,11 +260,8 @@
262260
<ClInclude Include="src\Frustum.h" />
263261
<ClInclude Include="src\Grid.h" />
264262
<ClInclude Include="src\Linef.h" />
265-
<ClInclude Include="src\ofAdvCamera.h" />
266-
<ClInclude Include="src\ofAdvEasyCam.h" />
267263
<ClInclude Include="src\OrthoCamera.h" />
268264
<ClInclude Include="src\Planef.h" />
269-
<ClInclude Include="src\Properties.h" />
270265
<ClInclude Include="src\TrackedBlob.h" />
271266
<ClInclude Include="src\TrackingClient.h" />
272267
<ClInclude Include="src\TrackingNetworkManager.h" />

0 commit comments

Comments
 (0)