You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there an alternative to specifying and building multiple binaries for a Boost.Python project?
For example, boost-python310 and boost-python312 are not compatible. How to build both binaries using CMake?
You should be able to set the Python_ROOT_DIR variable to point at the desired version.
With the B2 tool, you can specify multiple versions of Python in a single build using the python=3.10,3.12 command line option. B2 will create both libraries.
Is there an alternative to specifying and building multiple binaries for a Boost.Python project?
For example,
boost-python310
andboost-python312
are not compatible. How to build both binaries using CMake?B2 provides the following solution: https://www.boost.org/doc/libs/1_85_0/tools/build/doc/html/index.html#bbv2.reference.tools.libraries.python.
The text was updated successfully, but these errors were encountered: