Changeset c205c3a in opengl-game for VulkanSFMLReference.vcxproj
- Timestamp:
- Nov 15, 2020, 3:18:33 PM (4 years ago)
- Branches:
- feature/imgui-sdl, master
- Children:
- 78c3045
- Parents:
- 57d43d0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
VulkanSFMLReference.vcxproj
r57d43d0 rc205c3a 20 20 </ItemGroup> 21 21 <ItemGroup> 22 <ClInclude Include="vulkan.h" /> 22 <ClCompile Include="vulkan-utils-new.cpp" /> 23 <ClCompile Include="Vulkan.cpp" /> 23 24 </ItemGroup> 24 25 <ItemGroup> 25 <Cl Compile Include="Vulkan.cpp" />26 <ClInclude Include="vulkan-utils-new.hpp" /> 26 27 </ItemGroup> 27 28 <PropertyGroup Label="Globals"> … … 93 94 <OutDir>$(SolutionDir)$(ProjectName).build\$(Platform)\$(Configuration)\</OutDir> 94 95 <IntDir>$(ProjectName).build\$(Platform)\$(Configuration)\</IntDir> 95 <IncludePath>../include;$( IncludePath)</IncludePath>96 <LibraryPath>../lib;$( LibraryPath)</LibraryPath>96 <IncludePath>../include;$(VULKAN_SDK)/Include;$(VULKAN_SDK)/Third-Party/Include;$(IncludePath)</IncludePath> 97 <LibraryPath>../lib;$(VULKAN_SDK)/Lib;$(LibraryPath)</LibraryPath> 97 98 </PropertyGroup> 98 99 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> … … 100 101 <OutDir>$(SolutionDir)$(ProjectName).build\$(Platform)\$(Configuration)\</OutDir> 101 102 <IntDir>$(ProjectName).build\$(Platform)\$(Configuration)\</IntDir> 102 <IncludePath>../include;$( IncludePath)</IncludePath>103 <LibraryPath>../lib;$( LibraryPath)</LibraryPath>103 <IncludePath>../include;$(VULKAN_SDK)/Include;$(VULKAN_SDK)/Third-Party/Include;$(IncludePath)</IncludePath> 104 <LibraryPath>../lib;$(VULKAN_SDK)/Lib;$(LibraryPath)</LibraryPath> 104 105 </PropertyGroup> 105 106 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> … … 141 142 <SubSystem>Console</SubSystem> 142 143 <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 <AdditionalDependencies>sfml-graphics-s-d.lib;sfml-window-s-d.lib;sfml-system-s-d.lib;vulkan-1.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> 144 145 </Link> 145 146 </ItemDefinitionGroup> … … 158 159 <OptimizeReferences>true</OptimizeReferences> 159 160 <GenerateDebugInformation>true</GenerateDebugInformation> 160 <AdditionalDependencies>sfml-graphics-s.lib;sfml-window-s.lib;sfml-system-s.lib; winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>161 <AdditionalDependencies>sfml-graphics-s.lib;sfml-window-s.lib;sfml-system-s.lib;vulkan-1.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> 161 162 </Link> 162 163 </ItemDefinitionGroup>
Note:
See TracChangeset
for help on using the changeset viewer.