tttapa / py-build-cmake

Modern, PEP 517 compliant build backend for creating Python packages with extensions built using CMake.
https://pypi.org/project/py-build-cmake
MIT License
45 stars 7 forks source link

Compatibility with Boost.Python? #13

Open edavalosanaya opened 1 year ago

edavalosanaya commented 1 year ago

Hello!

First, great library @tttapa et al., thank you for y'all's work!

Quick question, is py-build-cmake compatible with PyBoost?

tttapa commented 1 year ago

py-build-cmake itself just needs a CMake project. It configures and builds that project with the appropriate options, and then installs the generated files into the Python Wheel package.
There are no requirements on what you build or install with it, so you should be able to use Boost.Python without issues.

edavalosanaya commented 1 year ago

Sweet, thanks for the clarification!