Skip to content

Commit

Permalink
Version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Jul 5, 2023
1 parent f0db853 commit 676b5c4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ alternative path, e.g., `C:\liboqs`, by replacing the first CMake line above by
cmake -S liboqs -B liboqs/build -DCMAKE_INSTALL_PREFIX="C:\liboqs" -DBUILD_SHARED_LIBS=ON
```

### Configure the wrapper
### Configure and install the wrapper

Execute in a Terminal/Console/Administrator Command Prompt

Expand Down Expand Up @@ -148,7 +148,7 @@ ctest --test-dir liboqs-cpp/build
liboqs-cpp is a header-only wrapper. To use liboqs-cpp, you only need
to

```c
```c++
#include "oqs_cpp.hpp"
```

Expand Down Expand Up @@ -234,6 +234,14 @@ Or, run the unit tests with
docker run -it oqs-cpp sh -c "ctest --test-dir liboqs-cpp/build"
```

In case you want to use the Docker container as development environment, mount
your current project in the Docker
container with

```shell
docker run --rm -it --workdir=/app -v ${PWD}:/app oqs-cpp /bin/bash
```

---

## Limitations and security
Expand Down

0 comments on commit 676b5c4

Please sign in to comment.