Some checks failed
Bigfoot / Build & Test Debug with ./ConanProfiles/clangd (Unity Build: OFF) (push) Waiting to run
Bigfoot / Build & Test Debug with ./ConanProfiles/clangd (Unity Build: ON) (push) Waiting to run
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: ON) (push) Failing after 1h1m21s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: OFF) (push) Failing after 1h1m22s
Bigfoot / Build & Test Debug with ./ConanProfiles/clangd_asan (Unity Build: OFF) (push) Failing after 11s
Bigfoot / Build & Test Debug with ./ConanProfiles/clangd_asan (Unity Build: ON) (push) Failing after 12s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: OFF) (push) Failing after 11s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: ON) (push) Failing after 17s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clangd (Unity Build: OFF) (push) Failing after 10s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clangd (Unity Build: ON) (push) Failing after 10s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clangd_asan (Unity Build: OFF) (push) Failing after 12s
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clangd (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clangd (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clangd_asan (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clangd_asan (Unity Build: ON) (push) Has been cancelled
Bigfoot / Clang Format Checks (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clangd_asan (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: OFF) (push) Has been cancelled
64 lines
1.7 KiB
CMake
64 lines
1.7 KiB
CMake
find_package(Python3 COMPONENTS Interpreter Development)
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_package(Threads REQUIRED)
|
|
endif()
|
|
|
|
find_package(EASTL REQUIRED)
|
|
find_package(unordered_dense REQUIRED)
|
|
if(${ASAN})
|
|
find_package(mimalloc-asan REQUIRED)
|
|
else()
|
|
find_package(mimalloc REQUIRED)
|
|
endif()
|
|
find_package(stduuid REQUIRED)
|
|
find_package(SQLite3 REQUIRED)
|
|
find_package(CLI11 REQUIRED)
|
|
find_package(rapidhash REQUIRED)
|
|
find_package(effolkronium_random REQUIRED)
|
|
find_package(flatbuffers CONFIG REQUIRED)
|
|
|
|
if(TRACY)
|
|
find_package(Tracy REQUIRED)
|
|
endif()
|
|
|
|
if(${IS_MULTI_CONFIG})
|
|
find_package(quill REQUIRED)
|
|
find_package(cpptrace REQUIRED)
|
|
elseif(${CMAKE_BUILD_TYPE} STREQUAL "Debug" OR ${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")
|
|
find_package(quill REQUIRED)
|
|
find_package(cpptrace REQUIRED)
|
|
endif()
|
|
|
|
|
|
find_package(glm REQUIRED)
|
|
find_package(lodepng REQUIRED)
|
|
find_package(imgui REQUIRED)
|
|
|
|
if(VULKAN)
|
|
find_package(VulkanHeaders REQUIRED)
|
|
if(${IS_MULTI_CONFIG})
|
|
find_package(vulkan-validationlayers REQUIRED)
|
|
elseif(${CMAKE_BUILD_TYPE} STREQUAL "Debug" OR ${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")
|
|
find_package(vulkan-validationlayers REQUIRED)
|
|
endif()
|
|
find_package(vulkan-memory-allocator REQUIRED)
|
|
endif()
|
|
|
|
if(BUILD_TESTS OR SAMPLE_APP)
|
|
find_package(glfw3 REQUIRED)
|
|
endif()
|
|
|
|
if(BUILD_TESTS)
|
|
find_package(GTest REQUIRED)
|
|
find_package(pixelmatch-cpp17 REQUIRED)
|
|
endif()
|
|
|
|
if(BUILD_TOOLS)
|
|
find_package(spirv-cross REQUIRED)
|
|
find_package(shaderc REQUIRED)
|
|
find_package(assimp REQUIRED)
|
|
find_package(meshoptimizer REQUIRED)
|
|
find_package(libsquish REQUIRED)
|
|
endif() |