2
0
Эх сурвалжийг харах

Added description for fetching glm with cmake in readme.md

Oleksii Chernykh 1 жил өмнө
parent
commit
673a963a0f
1 өөрчлөгдсөн 20 нэмэгдсэн , 0 устгасан
  1. 20 0
      readme.md

+ 20 - 0
readme.md

@@ -83,6 +83,26 @@ target_link_libraries(main PRIVATE glm::glm-header-only)
 vcpkg install glm
 ```
 
+## CMake using FetchContent
+You can add glm to your CMake project to be built together.
+
+Add to the `CMakeLists.txt` file:
+```cmake
+cmake_minimum_required(VERSION 3.11) # FetchContent is new in version 3.11.
+
+include(FetchContent)
+
+FetchContent_Declare(
+	glm
+	GIT_REPOSITORY	https://github.com/g-truc/glm.git
+	GIT_TAG 	bf71a834948186f4097caa076cd2663c69a10e1e #refs/tags/0.9.9.8
+)
+
+FetchContent_MakeAvailable(glm)
+
+target_link_libraries(main PRIVATE glm::glm)
+```
+
 ## Release notes
 
 ### [GLM 0.9.9.9](https://github.com/g-truc/glm/releases/tag/0.9.9.9) - 2024-01-XX