Question: I am building a Python extension in C++ using pybind11 and scikit-build. I base on the example provided at https://github.com/pybind/scikit_build_example/blob/master/setup.py. My CMakelists boils down to this: setup.py: And on the python side I have in mylib/__init__.py: This all works ...