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

View File

@@ -20,3 +20,5 @@ YAMLCPP_REPO=https://git.madvoxel.net/Mirrors/yaml-cpp.git
UTFCPP_REPO=https://git.madvoxel.net/Mirrors/utfcpp.git
TRACY_REPO=https://git.madvoxel.net/Mirrors/tracy.git
STB_REPO=https://git.madvoxel.net/Mirrors/stb.git
UNITS_REPO=https://git.madvoxel.net/Mirrors/units.git
ANKERLUD_REPO=https://git.madvoxel.net/Mirrors/ankerl_unordered_dense.git

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)

View File

@@ -107,7 +107,7 @@ endif()
list(APPEND CMAKE_PREFIX_PATH ${CMAKE_BINARY_DIR}/deps/INSTALL)
target_link_libraries(openVulkanoCpp PRIVATE magic_enum yaml-cpp fmt spdlog glm pugixml stb eigen utf8cpp imgui_internal TracyClient stud-uuid ryml unordered_dense Boost::regex)
target_link_libraries(openVulkanoCpp PRIVATE magic_enum yaml-cpp fmt spdlog glm pugixml stb eigen utf8cpp imgui_internal TracyClient stud-uuid ryml unordered_dense Boost::regex units)
LinkCurl(openVulkanoCpp)
add_compile_definitions(LIBARCHIVE_STATIC)