remove cglm (use OgreMath)

This commit is contained in:
rjindael 2023-07-11 23:48:51 -07:00
parent cdfefa086b
commit fa09e930d0
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
3 changed files with 1 additions and 4 deletions

View File

@ -12,7 +12,6 @@ set(DEPENDENCIES_DIR ${CMAKE_SOURCE_DIR}/Dependencies)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-attributes -Wno-return-type") # Ignore warnings generated by Luau and Qt
find_package(Boost REQUIRED)
find_package(cglm REQUIRED CONFIG)
find_package(OGRE REQUIRED COMPONENTS Bites CONFIG)
add_subdirectory(Projects)

View File

@ -29,7 +29,7 @@ add_library(Engine STATIC
)
target_include_directories(Engine PUBLIC ${BOOST_INCLUDE_DIRS} Header/)
target_link_libraries(Engine PUBLIC ${BOOST_LIBRARIES} OgreBites cglm Luau.Analysis Luau.Ast Luau.Compiler Luau.VM)
target_link_libraries(Engine PUBLIC ${BOOST_LIBRARIES} OgreBites Luau.Analysis Luau.Ast Luau.Compiler Luau.VM)
file(COPY ${OGRE_CONFIG_DIR}/plugins.cfg ${OGRE_CONFIG_DIR}/resources.cfg
DESTINATION ${CMAKE_BINARY_DIR})

View File

@ -2,8 +2,6 @@
#include <string>
#include <cglm/cglm.h>
#include <Rendering/TextureProxyBase.hpp>
namespace RNR