Reputation: 7809
I'm building a number of packages with conan install
, the packages are defined in a conanfile.py
. One of the packages needs to be built with a different compiler.cppstd
setting than the rest.
How can I set a per-package compiler.cppstd
value? I tried conan install ... -s <package-name>:compiler.cppstd=gnu17
but it had no effect.
Upvotes: 1
Views: 69