github.com/kaydxh/golang@v0.0.131/pkg/gocv/cgo/third_path/pybind11/tests/test_cmake_build/main.cpp (about)

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