[Chore] (Submodule): Add GLM as submodule.

This commit is contained in:
BZLZHH 2025-07-31 15:28:11 +08:00 committed by BZLZHH
parent ae7ff966dd
commit 11910ce824
3 changed files with 5 additions and 0 deletions

3
.gitmodules vendored
View File

@ -7,3 +7,6 @@
[submodule "src/main/cpp/3rdparty/xxhash"]
path = src/main/cpp/3rdparty/xxhash
url = https://github.com/stbrumme/xxhash.git
[submodule "src/main/cpp/3rdparty/glm"]
path = src/main/cpp/3rdparty/glm
url = https://github.com/g-truc/glm.git

1
src/main/cpp/3rdparty/glm vendored Submodule

@ -0,0 +1 @@
Subproject commit 2d4c4b4dd31fde06cfffad7915c2b3006402322f

View File

@ -61,6 +61,7 @@ add_library(${CMAKE_PROJECT_NAME} SHARED
target_include_directories(${CMAKE_PROJECT_NAME} PRIVATE
./includes
./3rdparty/glm
./3rdparty/xxhash)
target_include_directories(${CMAKE_PROJECT_NAME} PUBLIC ${CMAKE_SOURCE_DIR}/include)