Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```