https://github.com/roaringbitmap/croaring_cmake_demo_single_file
Really simple cmake example with CRoaring
https://github.com/roaringbitmap/croaring_cmake_demo_single_file
Last synced: 3 months ago
JSON representation
Really simple cmake example with CRoaring
- Host: GitHub
- URL: https://github.com/roaringbitmap/croaring_cmake_demo_single_file
- Owner: RoaringBitmap
- Created: 2020-08-17T17:49:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-13T00:46:24.000Z (over 2 years ago)
- Last Synced: 2025-02-22T21:14:20.404Z (over 1 year ago)
- Language: CMake
- Size: 2.93 KB
- Stars: 4
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cmake_demo_single_file
Really simple CMake demo
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/repro
./build/reproc
```
If you are using Visual Studio, the instructions are nearly the same:
```
cmake -B build .
cmake --build build --config Release
./build/Release/repro
./build/Release/reproc
```