Replies: 2 comments 7 replies
-
There is a nanobind-config.cmake:
but CMake does not find it, even when this package is installed via conda |
Beta Was this translation helpful? Give feedback.
7 replies
-
For the record, CMake's FetchContent seems to work fine: include(FetchContent)
FetchContent_Declare(
nanobind
GIT_REPOSITORY https://github.com/wjakob/nanobind/
GIT_TAG v2.4.0
)
FetchContent_MakeAvailable(nanobind) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am building a nanobind interface for nlohmann::json, the nanobind variant of pybind11_json. I cannot use all their tooling directly because the CMake config is not a part of the nanobind conda package. For pybind11 we have the necessary file here:
but the same
nanobindConfig.cmake
file does not exist for nanobind. Can you please add it?Beta Was this translation helpful? Give feedback.
All reactions