diff --git a/CMakeLists.txt b/CMakeLists.txt index d07f29a..6e2c4cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/External/fmt.cmake b/External/fmt.cmake new file mode 100644 index 0000000..715b029 --- /dev/null +++ b/External/fmt.cmake @@ -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)