Skip to content

Commit

Permalink
get rid of warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tadgem committed Jul 16, 2024
1 parent 96501e1 commit 18e2f9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backends/sdl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(lvk-sdl)

set (CMAKE_CXX_STANDARD 17)

find_package(Vulkan REQUIRED FATAL_ERROR) # error
find_package(Vulkan REQUIRED)

add_library(${PROJECT_NAME} STATIC src/VulkanAPI_SDL.cpp
src/ImGui/imgui_impl_sdl2.cpp
Expand Down
2 changes: 1 addition & 1 deletion lvk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(lvk)

set (CMAKE_CXX_STANDARD 17)

find_package(Vulkan REQUIRED FATAL_ERROR) # error
find_package(Vulkan REQUIRED) # error

add_library(${PROJECT_NAME} STATIC src/lvk/VulkanAPI.cpp
src/lvk/Texture.cpp
Expand Down

0 comments on commit 18e2f9a

Please sign in to comment.