source: opengl-game/VulkanSFMLReference.vcxproj@ 57d43d0

feature/imgui-sdl
Last change on this file since 57d43d0 was 57d43d0, checked in by Dmitry Portnoy <dportnoy@…>, 4 years ago

Add an example project using Vulkan with SFML, with SFML statically linked

  • Property mode set to 100644
File size: 8.2 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 <ClInclude Include="vulkan.h" />
23 </ItemGroup>
24 <ItemGroup>
25 <ClCompile Include="Vulkan.cpp" />
26 </ItemGroup>
27 <PropertyGroup Label="Globals">
28 <VCProjectVersion>16.0</VCProjectVersion>
29 <Keyword>Win32Proj</Keyword>
30 <ProjectGuid>{91d47623-20f5-429c-911c-96d0422927f0}</ProjectGuid>
31 <RootNamespace>VulkanSFMLReference</RootNamespace>
32 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
33 </PropertyGroup>
34 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
36 <ConfigurationType>Application</ConfigurationType>
37 <UseDebugLibraries>true</UseDebugLibraries>
38 <PlatformToolset>v142</PlatformToolset>
39 <CharacterSet>Unicode</CharacterSet>
40 </PropertyGroup>
41 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
42 <ConfigurationType>Application</ConfigurationType>
43 <UseDebugLibraries>false</UseDebugLibraries>
44 <PlatformToolset>v142</PlatformToolset>
45 <WholeProgramOptimization>true</WholeProgramOptimization>
46 <CharacterSet>Unicode</CharacterSet>
47 </PropertyGroup>
48 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
49 <ConfigurationType>Application</ConfigurationType>
50 <UseDebugLibraries>true</UseDebugLibraries>
51 <PlatformToolset>v142</PlatformToolset>
52 <CharacterSet>Unicode</CharacterSet>
53 </PropertyGroup>
54 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
55 <ConfigurationType>Application</ConfigurationType>
56 <UseDebugLibraries>false</UseDebugLibraries>
57 <PlatformToolset>v142</PlatformToolset>
58 <WholeProgramOptimization>true</WholeProgramOptimization>
59 <CharacterSet>Unicode</CharacterSet>
60 </PropertyGroup>
61 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
62 <ImportGroup Label="ExtensionSettings">
63 </ImportGroup>
64 <ImportGroup Label="Shared">
65 </ImportGroup>
66 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
67 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
68 </ImportGroup>
69 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
70 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
71 </ImportGroup>
72 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
73 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
74 </ImportGroup>
75 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
76 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
77 </ImportGroup>
78 <PropertyGroup Label="UserMacros" />
79 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
80 <LinkIncremental>true</LinkIncremental>
81 <OutDir>$(SolutionDir)$(ProjectName).build\$(Platform)\$(Configuration)\</OutDir>
82 <IntDir>$(ProjectName).build\$(Platform)\$(Configuration)\</IntDir>
83 <IncludePath>../include;$(IncludePath)</IncludePath>
84 </PropertyGroup>
85 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
86 <LinkIncremental>false</LinkIncremental>
87 <OutDir>$(SolutionDir)$(ProjectName).build\$(Platform)\$(Configuration)\</OutDir>
88 <IntDir>$(ProjectName).build\$(Platform)\$(Configuration)\</IntDir>
89 <IncludePath>../include;$(IncludePath)</IncludePath>
90 </PropertyGroup>
91 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
92 <LinkIncremental>true</LinkIncremental>
93 <OutDir>$(SolutionDir)$(ProjectName).build\$(Platform)\$(Configuration)\</OutDir>
94 <IntDir>$(ProjectName).build\$(Platform)\$(Configuration)\</IntDir>
95 <IncludePath>../include;$(IncludePath)</IncludePath>
96 <LibraryPath>../lib;$(LibraryPath)</LibraryPath>
97 </PropertyGroup>
98 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
99 <LinkIncremental>false</LinkIncremental>
100 <OutDir>$(SolutionDir)$(ProjectName).build\$(Platform)\$(Configuration)\</OutDir>
101 <IntDir>$(ProjectName).build\$(Platform)\$(Configuration)\</IntDir>
102 <IncludePath>../include;$(IncludePath)</IncludePath>
103 <LibraryPath>../lib;$(LibraryPath)</LibraryPath>
104 </PropertyGroup>
105 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
106 <ClCompile>
107 <WarningLevel>Level3</WarningLevel>
108 <SDLCheck>true</SDLCheck>
109 <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
110 <ConformanceMode>true</ConformanceMode>
111 </ClCompile>
112 <Link>
113 <SubSystem>Console</SubSystem>
114 <GenerateDebugInformation>true</GenerateDebugInformation>
115 </Link>
116 </ItemDefinitionGroup>
117 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
118 <ClCompile>
119 <WarningLevel>Level3</WarningLevel>
120 <FunctionLevelLinking>true</FunctionLevelLinking>
121 <IntrinsicFunctions>true</IntrinsicFunctions>
122 <SDLCheck>true</SDLCheck>
123 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
124 <ConformanceMode>true</ConformanceMode>
125 </ClCompile>
126 <Link>
127 <SubSystem>Console</SubSystem>
128 <EnableCOMDATFolding>true</EnableCOMDATFolding>
129 <OptimizeReferences>true</OptimizeReferences>
130 <GenerateDebugInformation>true</GenerateDebugInformation>
131 </Link>
132 </ItemDefinitionGroup>
133 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
134 <ClCompile>
135 <WarningLevel>Level3</WarningLevel>
136 <SDLCheck>true</SDLCheck>
137 <PreprocessorDefinitions>_DEBUG;_CONSOLE;SFML_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
138 <ConformanceMode>true</ConformanceMode>
139 </ClCompile>
140 <Link>
141 <SubSystem>Console</SubSystem>
142 <GenerateDebugInformation>true</GenerateDebugInformation>
143 <AdditionalDependencies>sfml-graphics-s-d.lib;sfml-window-s-d.lib;sfml-system-s-d.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
144 </Link>
145 </ItemDefinitionGroup>
146 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
147 <ClCompile>
148 <WarningLevel>Level3</WarningLevel>
149 <FunctionLevelLinking>true</FunctionLevelLinking>
150 <IntrinsicFunctions>true</IntrinsicFunctions>
151 <SDLCheck>true</SDLCheck>
152 <PreprocessorDefinitions>NDEBUG;_CONSOLE;SFML_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
153 <ConformanceMode>true</ConformanceMode>
154 </ClCompile>
155 <Link>
156 <SubSystem>Console</SubSystem>
157 <EnableCOMDATFolding>true</EnableCOMDATFolding>
158 <OptimizeReferences>true</OptimizeReferences>
159 <GenerateDebugInformation>true</GenerateDebugInformation>
160 <AdditionalDependencies>sfml-graphics-s.lib;sfml-window-s.lib;sfml-system-s.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
161 </Link>
162 </ItemDefinitionGroup>
163 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
164 <ImportGroup Label="ExtensionTargets">
165 </ImportGroup>
166</Project>
Note: See TracBrowser for help on using the repository browser.