add missing cmake option

This commit is contained in:
Eyck Jentzsch 2021-03-14 12:28:04 +01:00
parent d05afd0a57
commit 330fd968d9
1 changed files with 6 additions and 2 deletions

View File

@ -14,7 +14,7 @@ cd PySysC-SC
mkdir build
cd build
conan install .. --build=missing
cmake ..
cmake -DBUILD_SHARED_LIBS=ON ..
cmake --build .
```
@ -24,5 +24,9 @@ If you encounter issues when linking wrt. c++11 symbols you might have run into
```
compiler.libcxx=libstdc++11
```
in $HOME/.conan/profiles/default
in $HOME/.conan/profiles/default or run
```
conan profile update settings.compiler.libcxx=libstdc++11 default
```