Skip to content

Commit adde66e

Browse files
committed
Fixes
1 parent 1d9ec4a commit adde66e

File tree

5 files changed

+14
-49
lines changed

5 files changed

+14
-49
lines changed

TOVR/C++/TOVR.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//============ True Open Virtual Reality ============
22
//========== https://github.com/TrueOpenVR ==========
33

4-
#include "stdafx.h"
54
#include <atlstr.h>
65

76
#define DLLEXPORT extern "C" __declspec(dllexport)

TOVR/C++/TOVR.vcxproj

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<ProjectGuid>{F0FA0C45-CFB3-487F-AE78-8B9668106277}</ProjectGuid>
2424
<Keyword>Win32Proj</Keyword>
2525
<RootNamespace>TOVR</RootNamespace>
26-
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
26+
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
2727
</PropertyGroup>
2828
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2929
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
@@ -43,7 +43,7 @@
4343
<ConfigurationType>DynamicLibrary</ConfigurationType>
4444
<UseDebugLibraries>true</UseDebugLibraries>
4545
<PlatformToolset>v141</PlatformToolset>
46-
<CharacterSet>Unicode</CharacterSet>
46+
<CharacterSet>MultiByte</CharacterSet>
4747
</PropertyGroup>
4848
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4949
<ConfigurationType>DynamicLibrary</ConfigurationType>
@@ -84,11 +84,13 @@
8484
</PropertyGroup>
8585
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
8686
<ClCompile>
87-
<PrecompiledHeader>Use</PrecompiledHeader>
87+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
8888
<WarningLevel>Level3</WarningLevel>
8989
<Optimization>Disabled</Optimization>
9090
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;TOVR_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
9191
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
92+
<PrecompiledHeaderFile />
93+
<PrecompiledHeaderOutputFile />
9294
</ClCompile>
9395
<Link>
9496
<SubSystem>Windows</SubSystem>
@@ -98,11 +100,13 @@
98100
</ItemDefinitionGroup>
99101
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
100102
<ClCompile>
101-
<PrecompiledHeader>Use</PrecompiledHeader>
103+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
102104
<WarningLevel>Level3</WarningLevel>
103105
<Optimization>Disabled</Optimization>
104106
<PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;TOVR_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
105107
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
108+
<PrecompiledHeaderFile />
109+
<PrecompiledHeaderOutputFile />
106110
</ClCompile>
107111
<Link>
108112
<SubSystem>Windows</SubSystem>
@@ -113,11 +117,13 @@
113117
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
114118
<ClCompile>
115119
<WarningLevel>Level3</WarningLevel>
116-
<PrecompiledHeader>Use</PrecompiledHeader>
120+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
117121
<Optimization>MaxSpeed</Optimization>
118122
<FunctionLevelLinking>true</FunctionLevelLinking>
119123
<IntrinsicFunctions>true</IntrinsicFunctions>
120124
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;TOVR_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
125+
<PrecompiledHeaderFile />
126+
<PrecompiledHeaderOutputFile />
121127
</ClCompile>
122128
<Link>
123129
<SubSystem>Windows</SubSystem>
@@ -129,11 +135,13 @@
129135
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
130136
<ClCompile>
131137
<WarningLevel>Level3</WarningLevel>
132-
<PrecompiledHeader>Use</PrecompiledHeader>
138+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
133139
<Optimization>MaxSpeed</Optimization>
134140
<FunctionLevelLinking>true</FunctionLevelLinking>
135141
<IntrinsicFunctions>true</IntrinsicFunctions>
136142
<PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;TOVR_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
143+
<PrecompiledHeaderFile />
144+
<PrecompiledHeaderOutputFile />
137145
</ClCompile>
138146
<Link>
139147
<SubSystem>Windows</SubSystem>
@@ -146,16 +154,6 @@
146154
<Text Include="ReadMe.txt" />
147155
</ItemGroup>
148156
<ItemGroup>
149-
<ClInclude Include="stdafx.h" />
150-
<ClInclude Include="targetver.h" />
151-
</ItemGroup>
152-
<ItemGroup>
153-
<ClCompile Include="stdafx.cpp">
154-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
155-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
156-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
157-
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
158-
</ClCompile>
159157
<ClCompile Include="TOVR.cpp" />
160158
</ItemGroup>
161159
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

TOVR/C++/stdafx.cpp

Lines changed: 0 additions & 8 deletions
This file was deleted.

TOVR/C++/stdafx.h

Lines changed: 0 additions & 16 deletions
This file was deleted.

TOVR/C++/targetver.h

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)