From 444e535f000fd7b53dadf6726d5cd29ac34cc75f Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 23 Jul 2020 08:58:19 +0200 Subject: Add pybind11 2.5 source --- 3rdparty/pybind11/tests/test_cmake_build/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 3rdparty/pybind11/tests/test_cmake_build/main.cpp (limited to '3rdparty/pybind11/tests/test_cmake_build/main.cpp') diff --git a/3rdparty/pybind11/tests/test_cmake_build/main.cpp b/3rdparty/pybind11/tests/test_cmake_build/main.cpp new file mode 100644 index 00000000..e30f2c4b --- /dev/null +++ b/3rdparty/pybind11/tests/test_cmake_build/main.cpp @@ -0,0 +1,6 @@ +#include +namespace py = pybind11; + +PYBIND11_MODULE(test_cmake_build, m) { + m.def("add", [](int i, int j) { return i + j; }); +} -- cgit v1.2.3