Skip to content

Commit

Permalink
[cmake] Attempt to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
IAmNotHanni committed Jul 14, 2024
1 parent f74e619 commit 6cd5d79
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
- {
name: "Ubuntu GCC (Debug)",
compiler: "gcc",
cc: "gcc-12", cxx: "g++-12",
cc: "gcc-14", cxx: "g++-14",
build_type: "Debug"
}
- {
name: "Ubuntu GCC (Release)",
compiler: "gcc",
cc: "gcc-12", cxx: "g++-12",
cc: "gcc-14", cxx: "g++-14",
build_type: "Release"
}

Expand Down
11 changes: 5 additions & 6 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ target_include_directories(
)

FetchContent_MakeAvailable(Vulkan)

find_package(Vulkan REQUIRED)

# Declare use of dependencies
Expand All @@ -141,13 +140,13 @@ FetchContent_MakeAvailable(volk)

target_link_libraries(inexor-vulkan-renderer
PUBLIC
fmt::fmt
fmt
glfw
glm::glm
glm
imgui
spdlog::spdlog
spdlog
tinygltf
toml11::toml11
volk_headers
toml11
volk
Vulkan::Headers
VulkanMemoryAllocator)

0 comments on commit 6cd5d79

Please sign in to comment.