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