# mahi-util **Repository Path**: FrankyTerry/mahi-util ## Basic Information - **Project Name**: mahi-util - **Description**: Utility classes and common functionality use by the mahi-lib ecosystem - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-01-06 - **Last Updated**: 2023-03-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

## 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`: ```cmake 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.