Skip to content

Fix Conan deployment after the addition of the Scribo component

Baptiste Esteban requested to merge development/fix-conan-deployment into next

The addition of the Scribo component add new file to the pylena module contained in Pylene, in the form of OBJECT target.

When compiled with shared option by the conan create command, the libraries were compiled with the fPIC flag, but the conanfile removed this option, making the OBJECT targets compiled without fPIC. So during link time, an error was raised.

This is solved by removing the automatic deletion of fPIC and close issue #89 (closed).

Merge request reports