source: opengl-game/OpenGLGame.vcxproj@ 7bf5433

feature/imgui-sdl points-test
Last change on this file since 7bf5433 was 7bf5433, checked in by Dmitry Portnoy <dmp1488@…>, 5 years ago

Create a new OpenGLGame project for a refactor of the original OpenGL game to make copying its logic over to the Vulkan implementation easier

  • Property mode set to 100644
File size: 6.9 KB
Line 
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="crash-logger.cpp" />
23 <ClCompile Include="FileStackWalker.cpp" />
24 <ClCompile Include="game-gui-glfw.cpp" />
25 <ClCompile Include="main-opengl.cpp" />
26 <ClCompile Include="opengl-game.cpp" />
27 <ClCompile Include="StackWalker.cpp" />
28 </ItemGroup>
29 <ItemGroup>
30 <ClInclude Include="compiler.hpp" />
31 <ClInclude Include="consts.hpp" />
32 <ClInclude Include="crash-logger.hpp" />
33 <ClInclude Include="FileStackWalker.h" />
34 <ClInclude Include="game-gui-glfw.hpp" />
35 <ClInclude Include="game-gui.hpp" />
36 <ClInclude Include="opengl-game.hpp" />
37 <ClInclude Include="StackWalker.h" />
38 </ItemGroup>
39 <PropertyGroup Label="Globals">
40 <VCProjectVersion>16.0</VCProjectVersion>
41 <ProjectGuid>{7BED9D8B-405D-4051-B872-7090AA360091}</ProjectGuid>
42 <RootNamespace>OpenGLGame</RootNamespace>
43 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
44 </PropertyGroup>
45 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
46 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
47 <ConfigurationType>Application</ConfigurationType>
48 <UseDebugLibraries>true</UseDebugLibraries>
49 <PlatformToolset>v142</PlatformToolset>
50 <CharacterSet>MultiByte</CharacterSet>
51 </PropertyGroup>
52 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
53 <ConfigurationType>Application</ConfigurationType>
54 <UseDebugLibraries>false</UseDebugLibraries>
55 <PlatformToolset>v142</PlatformToolset>
56 <WholeProgramOptimization>true</WholeProgramOptimization>
57 <CharacterSet>MultiByte</CharacterSet>
58 </PropertyGroup>
59 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
60 <ConfigurationType>Application</ConfigurationType>
61 <UseDebugLibraries>true</UseDebugLibraries>
62 <PlatformToolset>v142</PlatformToolset>
63 <CharacterSet>MultiByte</CharacterSet>
64 </PropertyGroup>
65 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
66 <ConfigurationType>Application</ConfigurationType>
67 <UseDebugLibraries>false</UseDebugLibraries>
68 <PlatformToolset>v142</PlatformToolset>
69 <WholeProgramOptimization>true</WholeProgramOptimization>
70 <CharacterSet>MultiByte</CharacterSet>
71 </PropertyGroup>
72 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
73 <ImportGroup Label="ExtensionSettings">
74 </ImportGroup>
75 <ImportGroup Label="Shared">
76 </ImportGroup>
77 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
79 </ImportGroup>
80 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
81 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
82 </ImportGroup>
83 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
84 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
85 </ImportGroup>
86 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
87 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
88 </ImportGroup>
89 <PropertyGroup Label="UserMacros" />
90 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
91 <IncludePath>include;$(IncludePath)</IncludePath>
92 <LibraryPath>lib;$(LibraryPath)</LibraryPath>
93 </PropertyGroup>
94 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
95 <ClCompile>
96 <WarningLevel>Level3</WarningLevel>
97 <Optimization>Disabled</Optimization>
98 <SDLCheck>true</SDLCheck>
99 <ConformanceMode>true</ConformanceMode>
100 <LanguageStandard>stdcpp17</LanguageStandard>
101 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
102 </ClCompile>
103 <Link>
104 <SubSystem>Console</SubSystem>
105 <AdditionalDependencies>glew32s.lib;glfw3.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
106 </Link>
107 </ItemDefinitionGroup>
108 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
109 <ClCompile>
110 <WarningLevel>Level3</WarningLevel>
111 <Optimization>Disabled</Optimization>
112 <SDLCheck>true</SDLCheck>
113 <ConformanceMode>true</ConformanceMode>
114 </ClCompile>
115 <Link>
116 <SubSystem>Console</SubSystem>
117 </Link>
118 </ItemDefinitionGroup>
119 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
120 <ClCompile>
121 <WarningLevel>Level3</WarningLevel>
122 <Optimization>MaxSpeed</Optimization>
123 <FunctionLevelLinking>true</FunctionLevelLinking>
124 <IntrinsicFunctions>true</IntrinsicFunctions>
125 <SDLCheck>true</SDLCheck>
126 <ConformanceMode>true</ConformanceMode>
127 </ClCompile>
128 <Link>
129 <SubSystem>Console</SubSystem>
130 <EnableCOMDATFolding>true</EnableCOMDATFolding>
131 <OptimizeReferences>true</OptimizeReferences>
132 </Link>
133 </ItemDefinitionGroup>
134 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
135 <ClCompile>
136 <WarningLevel>Level3</WarningLevel>
137 <Optimization>MaxSpeed</Optimization>
138 <FunctionLevelLinking>true</FunctionLevelLinking>
139 <IntrinsicFunctions>true</IntrinsicFunctions>
140 <SDLCheck>true</SDLCheck>
141 <ConformanceMode>true</ConformanceMode>
142 </ClCompile>
143 <Link>
144 <SubSystem>Console</SubSystem>
145 <EnableCOMDATFolding>true</EnableCOMDATFolding>
146 <OptimizeReferences>true</OptimizeReferences>
147 </Link>
148 </ItemDefinitionGroup>
149 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
150 <ImportGroup Label="ExtensionTargets">
151 </ImportGroup>
152</Project>
Note: See TracBrowser for help on using the repository browser.