This commit is contained in:
David Allemang
2022-09-15 11:13:58 -04:00
parent cdd0e628e1
commit fe48897245
2 changed files with 8 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ set(CMAKE_CXX_STANDARD 17)
include(FetchContent)
include(External/eigen.cmake)
include(External/fmt.cmake)
include(External/glad.cmake)
include(External/glfw.cmake)
include(External/gtest.cmake)

7
External/fmt.cmake vendored Normal file
View File

@@ -0,0 +1,7 @@
FetchContent_Declare(
fmt
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
GIT_TAG 9.1.0
GIT_PROGRESS TRUE
)
FetchContent_MakeAvailable(fmt)