From ee30412c9b97982b4e0cfa0e95371388c57d4dd4 Mon Sep 17 00:00:00 2001 From: Anemunt <69436164+darkresident55@users.noreply.github.com> Date: Sun, 28 Dec 2025 16:25:54 -0500 Subject: [PATCH] fix building --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a7f796e..8181195 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,6 +110,10 @@ list(FILTER ENGINE_HEADERS EXCLUDE REGEX ".*/ThirdParty/PhysX/.*") add_library(core STATIC ${ENGINE_SOURCES} ${ENGINE_HEADERS}) set(ASSIMP_WARNINGS_AS_ERRORS OFF CACHE BOOL "Disable Assimp warnings as errors" FORCE) +set(ASSIMP_BUILD_TESTS OFF CACHE BOOL "Disable Assimp tests" FORCE) +set(ASSIMP_BUILD_SAMPLES OFF CACHE BOOL "Disable Assimp samples" FORCE) +set(ASSIMP_BUILD_ASSIMP_TOOLS OFF CACHE BOOL "Disable Assimp tools" FORCE) +set(ASSIMP_INSTALL OFF CACHE BOOL "Disable Assimp install targets" FORCE) add_subdirectory(src/ThirdParty/assimp EXCLUDE_FROM_ALL) target_link_libraries(core PUBLIC assimp) target_include_directories(core PUBLIC