Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hylo-lang/context-core-api
Exposing Boost.Context core API
https://github.com/hylo-lang/context-core-api
Last synced: 29 days ago
JSON representation
Exposing Boost.Context core API
- Host: GitHub
- URL: https://github.com/hylo-lang/context-core-api
- Owner: hylo-lang
- License: bsl-1.0
- Created: 2023-06-18T14:43:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-06T11:26:24.000Z (9 months ago)
- Last Synced: 2024-11-13T08:12:32.003Z (3 months ago)
- Language: C++
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# context-core-api
Exposing Boost.Context core API## Building
1. **Configure step**
Execute the following:
```
cmake -G Ninja -S . -B -D CMAKE_BUILD_TYPE= -DWITH_TESTS=On \
```
where `` is a build directory (usually `.build` or `build`), and `` is the build type (usually `Debug` or `Release`).2. **Build step**
```
cmake --build
```3. **Test step**
For this step, `WITH_TESTS` needs to be set to `ON` in the configure step.
```
ctest --test-dir /test
```