You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
270 B
16 lines
270 B
#include <string>
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
#include <pybind11/pybind11.h>
|
|
#include <pybind11/detail/common.h>
|
|
#include "lib_test.h"
|
|
|
|
using namespace std;
|
|
namespace py = pybind11;
|
|
|
|
PYBIND11_MODULE(lib_test, m) {
|
|
#include "gen/py_module.pybind11"
|
|
|
|
|
|
}
|
|
|
|
|