Skip to content

Commit eee2967

Browse files
committed
Changing the include paths for the examples in the vcxproj. Hopefully this fixes the windows release build issues.
1 parent d979711 commit eee2967

File tree

1 file changed

+145
-143
lines changed

1 file changed

+145
-143
lines changed
Lines changed: 145 additions & 143 deletions
Original file line numberDiff line numberDiff line change
@@ -1,143 +1,145 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<ItemGroup Label="ProjectConfigurations">
4-
<ProjectConfiguration Include="Debug|Win32">
5-
<Configuration>Debug</Configuration>
6-
<Platform>Win32</Platform>
7-
</ProjectConfiguration>
8-
<ProjectConfiguration Include="Release|Win32">
9-
<Configuration>Release</Configuration>
10-
<Platform>Win32</Platform>
11-
</ProjectConfiguration>
12-
<ProjectConfiguration Include="Debug|x64">
13-
<Configuration>Debug</Configuration>
14-
<Platform>x64</Platform>
15-
</ProjectConfiguration>
16-
<ProjectConfiguration Include="Release|x64">
17-
<Configuration>Release</Configuration>
18-
<Platform>x64</Platform>
19-
</ProjectConfiguration>
20-
</ItemGroup>
21-
<ItemGroup>
22-
<ClCompile Include="..\examples.cpp" />
23-
</ItemGroup>
24-
<ItemGroup>
25-
<ClInclude Include="..\Keyboard_examples.h" />
26-
<ClInclude Include="..\SpriteHandler_examples.h" />
27-
</ItemGroup>
28-
<PropertyGroup Label="Globals">
29-
<VCProjectVersion>17.0</VCProjectVersion>
30-
<Keyword>Win32Proj</Keyword>
31-
<ProjectGuid>{c63d8ba6-b868-45da-aaf9-d7fcc0e4e5c2}</ProjectGuid>
32-
<RootNamespace>examplesvs</RootNamespace>
33-
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
34-
</PropertyGroup>
35-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
36-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
37-
<ConfigurationType>Application</ConfigurationType>
38-
<UseDebugLibraries>true</UseDebugLibraries>
39-
<PlatformToolset>v143</PlatformToolset>
40-
<CharacterSet>Unicode</CharacterSet>
41-
</PropertyGroup>
42-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
43-
<ConfigurationType>Application</ConfigurationType>
44-
<UseDebugLibraries>false</UseDebugLibraries>
45-
<PlatformToolset>v143</PlatformToolset>
46-
<WholeProgramOptimization>true</WholeProgramOptimization>
47-
<CharacterSet>Unicode</CharacterSet>
48-
</PropertyGroup>
49-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
50-
<ConfigurationType>Application</ConfigurationType>
51-
<UseDebugLibraries>true</UseDebugLibraries>
52-
<PlatformToolset>v143</PlatformToolset>
53-
<CharacterSet>Unicode</CharacterSet>
54-
</PropertyGroup>
55-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
56-
<ConfigurationType>Application</ConfigurationType>
57-
<UseDebugLibraries>false</UseDebugLibraries>
58-
<PlatformToolset>v143</PlatformToolset>
59-
<WholeProgramOptimization>true</WholeProgramOptimization>
60-
<CharacterSet>Unicode</CharacterSet>
61-
</PropertyGroup>
62-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
63-
<ImportGroup Label="ExtensionSettings">
64-
</ImportGroup>
65-
<ImportGroup Label="Shared">
66-
</ImportGroup>
67-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
68-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
69-
</ImportGroup>
70-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
71-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
72-
</ImportGroup>
73-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
74-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
75-
</ImportGroup>
76-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
77-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
78-
</ImportGroup>
79-
<PropertyGroup Label="UserMacros" />
80-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
81-
<ClCompile>
82-
<WarningLevel>Level3</WarningLevel>
83-
<SDLCheck>true</SDLCheck>
84-
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
85-
<ConformanceMode>true</ConformanceMode>
86-
</ClCompile>
87-
<Link>
88-
<SubSystem>Console</SubSystem>
89-
<GenerateDebugInformation>true</GenerateDebugInformation>
90-
</Link>
91-
</ItemDefinitionGroup>
92-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
93-
<ClCompile>
94-
<WarningLevel>Level3</WarningLevel>
95-
<FunctionLevelLinking>true</FunctionLevelLinking>
96-
<IntrinsicFunctions>true</IntrinsicFunctions>
97-
<SDLCheck>true</SDLCheck>
98-
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
99-
<ConformanceMode>true</ConformanceMode>
100-
</ClCompile>
101-
<Link>
102-
<SubSystem>Console</SubSystem>
103-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
104-
<OptimizeReferences>true</OptimizeReferences>
105-
<GenerateDebugInformation>true</GenerateDebugInformation>
106-
</Link>
107-
</ItemDefinitionGroup>
108-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
109-
<ClCompile>
110-
<WarningLevel>Level3</WarningLevel>
111-
<SDLCheck>true</SDLCheck>
112-
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
113-
<ConformanceMode>true</ConformanceMode>
114-
<AdditionalIncludeDirectories>$(ProjectDir)..\..\..\</AdditionalIncludeDirectories>
115-
<LanguageStandard>stdcpp20</LanguageStandard>
116-
</ClCompile>
117-
<Link>
118-
<SubSystem>Console</SubSystem>
119-
<GenerateDebugInformation>true</GenerateDebugInformation>
120-
</Link>
121-
</ItemDefinitionGroup>
122-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
123-
<ClCompile>
124-
<WarningLevel>Level3</WarningLevel>
125-
<FunctionLevelLinking>true</FunctionLevelLinking>
126-
<IntrinsicFunctions>true</IntrinsicFunctions>
127-
<SDLCheck>true</SDLCheck>
128-
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
129-
<ConformanceMode>true</ConformanceMode>
130-
<AdditionalIncludeDirectories>$(ProjectDir)..\..\..\</AdditionalIncludeDirectories>
131-
<LanguageStandard>stdcpp20</LanguageStandard>
132-
</ClCompile>
133-
<Link>
134-
<SubSystem>Console</SubSystem>
135-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
136-
<OptimizeReferences>true</OptimizeReferences>
137-
<GenerateDebugInformation>true</GenerateDebugInformation>
138-
</Link>
139-
</ItemDefinitionGroup>
140-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
141-
<ImportGroup Label="ExtensionTargets">
142-
</ImportGroup>
143-
</Project>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|x64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>x64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<ItemGroup>
22+
<ClCompile Include="..\examples.cpp" />
23+
</ItemGroup>
24+
<ItemGroup>
25+
<ClInclude Include="..\Keyboard_examples.h" />
26+
<ClInclude Include="..\SpriteHandler_examples.h" />
27+
</ItemGroup>
28+
<PropertyGroup Label="Globals">
29+
<VCProjectVersion>17.0</VCProjectVersion>
30+
<Keyword>Win32Proj</Keyword>
31+
<ProjectGuid>{c63d8ba6-b868-45da-aaf9-d7fcc0e4e5c2}</ProjectGuid>
32+
<RootNamespace>examplesvs</RootNamespace>
33+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
34+
</PropertyGroup>
35+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
37+
<ConfigurationType>Application</ConfigurationType>
38+
<UseDebugLibraries>true</UseDebugLibraries>
39+
<PlatformToolset>v143</PlatformToolset>
40+
<CharacterSet>Unicode</CharacterSet>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
43+
<ConfigurationType>Application</ConfigurationType>
44+
<UseDebugLibraries>false</UseDebugLibraries>
45+
<PlatformToolset>v143</PlatformToolset>
46+
<WholeProgramOptimization>true</WholeProgramOptimization>
47+
<CharacterSet>Unicode</CharacterSet>
48+
</PropertyGroup>
49+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
50+
<ConfigurationType>Application</ConfigurationType>
51+
<UseDebugLibraries>true</UseDebugLibraries>
52+
<PlatformToolset>v143</PlatformToolset>
53+
<CharacterSet>Unicode</CharacterSet>
54+
</PropertyGroup>
55+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
56+
<ConfigurationType>Application</ConfigurationType>
57+
<UseDebugLibraries>false</UseDebugLibraries>
58+
<PlatformToolset>v143</PlatformToolset>
59+
<WholeProgramOptimization>true</WholeProgramOptimization>
60+
<CharacterSet>Unicode</CharacterSet>
61+
</PropertyGroup>
62+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
63+
<ImportGroup Label="ExtensionSettings">
64+
</ImportGroup>
65+
<ImportGroup Label="Shared">
66+
</ImportGroup>
67+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
68+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
69+
</ImportGroup>
70+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
71+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
72+
</ImportGroup>
73+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
74+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
75+
</ImportGroup>
76+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
77+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
78+
</ImportGroup>
79+
<PropertyGroup Label="UserMacros" />
80+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
81+
<ClCompile>
82+
<WarningLevel>Level3</WarningLevel>
83+
<SDLCheck>true</SDLCheck>
84+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
85+
<ConformanceMode>true</ConformanceMode>
86+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\..\Core\include</AdditionalIncludeDirectories>
87+
</ClCompile>
88+
<Link>
89+
<SubSystem>Console</SubSystem>
90+
<GenerateDebugInformation>true</GenerateDebugInformation>
91+
</Link>
92+
</ItemDefinitionGroup>
93+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
94+
<ClCompile>
95+
<WarningLevel>Level3</WarningLevel>
96+
<FunctionLevelLinking>true</FunctionLevelLinking>
97+
<IntrinsicFunctions>true</IntrinsicFunctions>
98+
<SDLCheck>true</SDLCheck>
99+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
100+
<ConformanceMode>true</ConformanceMode>
101+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\..\Core\include</AdditionalIncludeDirectories>
102+
</ClCompile>
103+
<Link>
104+
<SubSystem>Console</SubSystem>
105+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
106+
<OptimizeReferences>true</OptimizeReferences>
107+
<GenerateDebugInformation>true</GenerateDebugInformation>
108+
</Link>
109+
</ItemDefinitionGroup>
110+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
111+
<ClCompile>
112+
<WarningLevel>Level3</WarningLevel>
113+
<SDLCheck>true</SDLCheck>
114+
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
115+
<ConformanceMode>true</ConformanceMode>
116+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\..\Core\include</AdditionalIncludeDirectories>
117+
<LanguageStandard>stdcpp20</LanguageStandard>
118+
</ClCompile>
119+
<Link>
120+
<SubSystem>Console</SubSystem>
121+
<GenerateDebugInformation>true</GenerateDebugInformation>
122+
</Link>
123+
</ItemDefinitionGroup>
124+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
125+
<ClCompile>
126+
<WarningLevel>Level3</WarningLevel>
127+
<FunctionLevelLinking>true</FunctionLevelLinking>
128+
<IntrinsicFunctions>true</IntrinsicFunctions>
129+
<SDLCheck>true</SDLCheck>
130+
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
131+
<ConformanceMode>true</ConformanceMode>
132+
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\include;$(SolutionDir)\..\..\..\Core\include</AdditionalIncludeDirectories>
133+
<LanguageStandard>stdcpp20</LanguageStandard>
134+
</ClCompile>
135+
<Link>
136+
<SubSystem>Console</SubSystem>
137+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
138+
<OptimizeReferences>true</OptimizeReferences>
139+
<GenerateDebugInformation>true</GenerateDebugInformation>
140+
</Link>
141+
</ItemDefinitionGroup>
142+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
143+
<ImportGroup Label="ExtensionTargets">
144+
</ImportGroup>
145+
</Project>

0 commit comments

Comments
 (0)