Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nkh-lab/cpp-utils
C++ utils library
https://github.com/nkh-lab/cpp-utils
cpp
Last synced: 4 days 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 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-24T22:00:18.000Z (9 months ago)
- Last Synced: 2024-02-24T23:19:55.572Z (9 months 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
[![CI](https://github.com/nkh-lab/cpp-utils/actions/workflows/ci.yml/badge.svg)](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
```