@@ -33,7 +33,8 @@ The project contains the following files and directories:
33
33
## Pre-requisites
34
34
35
35
- [ liboqs] ( https://github.com/open-quantum-safe/liboqs )
36
- - [ CMake] ( https://cmake.org/ )
36
+ - [ git] ( https://git-scm.com/ ) version control system
37
+ - [ CMake] ( https://cmake.org/ ) build system
37
38
- C compliant compiler,
38
39
e.g., [ gcc] ( https://gcc.gnu.org/ ) , [ clang] ( https://clang.llvm.org ) ,
39
40
[ MSVC] ( https://visualstudio.microsoft.com/vs/ ) etc.
@@ -80,21 +81,20 @@ an alternative path, e.g., `C:\liboqs`, by passing the
80
81
` -DCMAKE_INSTALL_PREFIX=/path/to/liboqs ` flag to CMake, e.g.,
81
82
82
83
``` shell
83
- cmake -S liboqs -B liboqs/build -DCMAKE_INSTALL_PREFIX=" C:\liboqs" -DBUILD_SHARED_LIBS=ON
84
+ cmake -S liboqs -B liboqs/build -DCMAKE_INSTALL_PREFIX=" C:\liboqs" -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=TRUE - DBUILD_SHARED_LIBS=ON
84
85
```
85
86
86
87
### Let liboqs-python install liboqs automatically
87
88
88
- If you want to avoid installing liboqs manually (as detailed in the step
89
- above), then you can skip the step above and let the liboqs-python wrapper try
90
- to install it for you automatically, as follows.
91
-
92
- When liboqs is not detected at runtime by liboqs-python, it will be downloaded,
89
+ If liboqs is not detected at runtime by liboqs-python, it will be downloaded,
93
90
configured and installed automatically (as a shared library). This process will
94
91
be performed only once, at runtime, i.e., when loading the liboqs-python
95
92
wrapper. The liboqs source directory will be automatically removed at the end
96
93
of the process.
97
94
95
+ This is convenient in case you want to avoid installing liboqs manually, as
96
+ described in the subsection above.
97
+
98
98
### Install and activate a Python virtual environment
99
99
100
100
Execute in a Terminal/Console/Administrator Command Prompt
0 commit comments