mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-12-24 13:28:13 +08:00
first commit
This commit is contained in:
6
third_party/pybind11/tests/test_cmake_build/main.cpp
vendored
Normal file
6
third_party/pybind11/tests/test_cmake_build/main.cpp
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <pybind11/pybind11.h>
|
||||
namespace py = pybind11;
|
||||
|
||||
PYBIND11_MODULE(test_cmake_build, m) {
|
||||
m.def("add", [](int i, int j) { return i + j; });
|
||||
}
|
||||
Reference in New Issue
Block a user