add missing cmake option
This commit is contained in:
parent
d05afd0a57
commit
330fd968d9
|
@ -14,7 +14,7 @@ cd PySysC-SC
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
conan install .. --build=missing
|
conan install .. --build=missing
|
||||||
cmake ..
|
cmake -DBUILD_SHARED_LIBS=ON ..
|
||||||
cmake --build .
|
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
|
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
|
||||||
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue