https://github.com/roaringbitmap/croaring_cmake_demo_from_single_header
Really simple CMake demo using CRoaring's single header files.
https://github.com/roaringbitmap/croaring_cmake_demo_from_single_header
Last synced: 3 months ago
JSON representation
Really simple CMake demo using CRoaring's single header files.
- Host: GitHub
- URL: https://github.com/roaringbitmap/croaring_cmake_demo_from_single_header
- Owner: RoaringBitmap
- Created: 2020-09-01T13:17:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-17T15:13:19.000Z (about 5 years ago)
- Last Synced: 2025-01-03T18:46:51.636Z (over 1 year ago)
- Language: CMake
- Size: 185 KB
- Stars: 4
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# croaring_cmake_demo_from_single_header
/badge.svg)
/badge.svg)

Really simple CMake demo using CRoaring's single header files.
If you have a recent version of CMake (3.15 or better) under linux, macOS or freeBSD, you can simply
go in the directory and type the following commands:
```
cmake -B build .
cmake --build build
./build/src/test
./build/src/testcpp
```
If you are using Visual Studio, the instructions are nearly the same:
```
cmake -B build .
cmake --build build --config Release
./build/src/Release/test
./build/src/Release/testcpp
```