remove cglm (use OgreMath)
This commit is contained in:
parent
cdfefa086b
commit
fa09e930d0
|
|
@ -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)
|
||||
|
|
@ -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})
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include <cglm/cglm.h>
|
||||
|
||||
#include <Rendering/TextureProxyBase.hpp>
|
||||
|
||||
namespace RNR
|
||||
|
|
|
|||
Loading…
Reference in New Issue