main.cpp revision 12037
1#include <pybind11/pybind11.h>
2namespace py = pybind11;
3
4PYBIND11_PLUGIN(test_cmake_build) {
5    py::module m("test_cmake_build");
6
7    m.def("add", [](int i, int j) { return i + j; });
8
9    return m.ptr();
10}
11