source: opengl-game/OpenGLGame.vcxproj@ 09e15a4

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

Add logger.hpp and logger.cpp to the MSVC projects

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