https://github.com/nkh-lab/cpp-utils
C++ utils library
https://github.com/nkh-lab/cpp-utils
cpp
Last synced: about 1 month ago
JSON representation
C++ utils library
- Host: GitHub
- URL: https://github.com/nkh-lab/cpp-utils
- Owner: nkh-lab
- License: gpl-3.0
- Created: 2023-02-23T09:09:07.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-24T22:00:18.000Z (over 2 years ago)
- Last Synced: 2025-01-16T21:39:23.716Z (over 1 year ago)
- Topics: cpp
- Language: C++
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Intro
C++ utils library.
## CI Status
[](https://github.com/nkh-lab/cpp-utils/actions/workflows/ci.yml)
Ubuntu | Windows
## How to build
### Linux
```
mkdir build && cd build
cmake ..
make
```
Debug and Unit Tests:
```
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Debug -Dlibcpputils_BUILD_UTESTS=ON ..
make
```