1#include <pybind11/pybind11.h> 2namespace py = pybind11; 3 4PYBIND11_MODULE(test_cmake_build, m) { 5 m.def("add", [](int i, int j) { return i + j; }); 6} 7
1#include <pybind11/pybind11.h> 2namespace py = pybind11; 3 4PYBIND11_MODULE(test_cmake_build, m) { 5 m.def("add", [](int i, int j) { return i + j; }); 6} 7