This commit is contained in:
2026-02-20 19:44:57 +01:00
committed by Romain BOULLARD
parent 7c0f086969
commit 934b44c1f8
16 changed files with 178 additions and 92 deletions

View File

@@ -6,13 +6,17 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
endif()
find_package(EASTL REQUIRED)
find_package(mimalloc REQUIRED)
find_package(CLI11 REQUIRED)
find_package(quill REQUIRED)
if(${IS_MULTI_CONFIG})
find_package(mimalloc REQUIRED)
find_package(mimalloc-asan REQUIRED)
find_package(cpptrace REQUIRED)
elseif(${CMAKE_BUILD_TYPE} STREQUAL "Release")
find_package(mimalloc REQUIRED)
elseif(${CMAKE_BUILD_TYPE} STREQUAL "Debug" OR ${CMAKE_BUILD_TYPE} STREQUAL "RelWithDebInfo")
find_package(mimalloc-asan REQUIRED)
find_package(cpptrace REQUIRED)
endif()