From 330fd968d9bafc22ad5b75884bb9b4b94a2f7281 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Sun, 14 Mar 2021 12:28:04 +0100 Subject: [PATCH] add missing cmake option --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8291405..dc90e37 100644 --- a/README.md +++ b/README.md @@ -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 +```