# utility **Repository Path**: zerokwok/utility ## Basic Information - **Project Name**: utility - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: v0.3_dev - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-24 - **Last Updated**: 2025-08-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # utility Provides features that are commonly used in daily development but not in the C++ standard library or Boost, or platform-specific extensions. ## Requirements - C++ 20 and leter - Boost 1.79.0 and leter - Qt 5.x and leter (Optional) - CMake 3.15 and leter - Conan 2 ## How to build ```bash git clone https://github.com/ZeroKwok/utility.git cd utility make rebuild make install ``` Configuration and compile types can be specified at build time, for example: `make rebuild OPTIONS=--profile=profiles/msvc-142-x86-mt DEBUG=1` ## How to use ```cmake find_package(utility REQUIRED) target_link_libraries(${PROJECT_NAME} utility) ``` ```cpp #include int main() { return 0; } ```