Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 697 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 697 Bytes

mahi::util

This library provides several helpful utility classes and functions that are consumed other mahi-lib libraries.

Integration

The library is small and intended to be used with CMake's FetchContent:

include(FetchContent) 
FetchContent_Declare(mahi-util GIT_REPOSITORY https://github.com/mahilab/mahi-util.git) 
FetchContent_MakeAvailable(mahi-util)

add_executable(my_app "my_app.cpp")
target_link_libraries(my_app mahi::util)

That's it! You should also be able to install or use the library as a git-submodule + CMake subdirectory if you prefer.