main.cpp revision 12391:ceeca8b41e4b
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