diff --git a/conanfile.py b/conanfile.py index 04d8559..bf10142 100644 --- a/conanfile.py +++ b/conanfile.py @@ -25,7 +25,6 @@ class LightRecipe(ConanFile): def requirements(self): self.requires("entt/3.15.0") self.requires("glfw/3.4") - self.requires("glm/1.0.1") self.requires("stb/cci.20240531") self.requires("yaml-cpp/0.8.0") self.requires("lz4/1.10.0") diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 4af5b13..8494433 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -40,7 +40,6 @@ endif() add_compile_definitions(IMGUI_IMPL_OPENGL_LOADER_GLAD) include_directories(${DEPENDENCIES_DIR}GLFW/include) -include_directories(${DEPENDENCIES_DIR}glm/) add_library(imgui STATIC ${IMGUI_FILES} ${IMGUI_BACKEND_FILES}) @@ -49,6 +48,5 @@ target_link_libraries( imgui PUBLIC glad PUBLIC opengl::opengl - PUBLIC glm::glm PUBLIC glfw ) diff --git a/modules/window/CMakeLists.txt b/modules/window/CMakeLists.txt index 92e9b74..7ab5655 100644 --- a/modules/window/CMakeLists.txt +++ b/modules/window/CMakeLists.txt @@ -5,8 +5,6 @@ else() endif() target_link_libraries(window PUBLIC - glm::glm - PRIVATE glfw logger diff --git a/tools/cmake/dependencies.cmake b/tools/cmake/dependencies.cmake index 56635ec..98e3ea5 100644 --- a/tools/cmake/dependencies.cmake +++ b/tools/cmake/dependencies.cmake @@ -1,5 +1,4 @@ find_package(glfw3 REQUIRED) -find_package(glm REQUIRED) find_package(stb REQUIRED) find_package(yaml-cpp REQUIRED) find_package(EnTT REQUIRED)