A sandbox repository to experiment structuring files and folders in projects that use pybind11 to create a python wrapper for a C++ code base with CMake based build system.
- Clone the repository
- mkdir build/
- cd build/
- cmake ..
- make
- ./main
- Clone the repository
- pip install .
- Open python interpreter
import pybind_project_example
pybind_project_example.add(3,4)
This example uses the pybind/scikit_build_example as the starting point.