Add units library

This commit is contained in:
Georg Hagen
2024-07-21 12:37:25 +02:00
parent 87038ed1cd
commit 7a376ea8fb
3 changed files with 19 additions and 2 deletions

15
3rdParty/units/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,15 @@
include(FetchContent)
if(NOT DEFINED UNITS_REPO)
set(UNITS_REPO https://github.com/nholthaus/units.git)
endif ()
FetchContent_Declare(
units
EXCLUDE_FROM_ALL
GIT_REPOSITORY ${UNITS_REPO}
GIT_TAG v2.3.3
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(units)