-
The following: pybind11_add_module(mod mod.cxx)
install(TARGETS mod DESTINATION ${SKBUILD_PROJECT_NAME}) in my pybind11_add_module(pkg_mod mod.cxx) which adds a disambiguation "scope" and is good practice, imo (cannot do a nicer The problem, however, is that the extension gets installed as Is there a recommended workaround? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Should I try, for example, to set the |
Beta Was this translation helpful? Give feedback.
-
It would be nice to have a "native" way to disambiguate targets by scoping. |
Beta Was this translation helpful? Give feedback.
Should I try, for example, to set the
LIBRARY_OUTPUT_NAME
property?