libstud-uuid
libstud-uuid copied to clipboard
Portable UUID generation library for C++
Please, add a CMake build file to the project.
This pull request adds the new UUID version added by RFC 9562. Added new UUID version enumerations: - `time_reordered` (version 6): Introduces a sortable time-based UUID format - `time_unix` (version...
Add the ability to include and build the project as a dependency using CMake Example project that uses this library with CMake: `./CMakeLists.txt` ``` cmake_minimum_required(VERSION 3.10) project(dymmy-proj) add_subdirectory(contrib) add_executable(dummy src/main.cpp...