@@ -7,6 +7,10 @@ extern void python_export_vector(py::module &);
|
||||
extern void python_export_igl(py::module &);
|
||||
extern void python_export_igl_viewer(py::module &);
|
||||
|
||||
#ifdef PY_COMISO
|
||||
extern void python_export_igl_comiso(py::module &);
|
||||
#endif
|
||||
|
||||
PYTHON_PLUGIN(igl) {
|
||||
py::init_threading();
|
||||
py::module m("igl", "Python wrappers for libigl");
|
||||
@@ -15,5 +19,9 @@ PYTHON_PLUGIN(igl) {
|
||||
python_export_igl(m);
|
||||
python_export_igl_viewer(m);
|
||||
|
||||
#ifdef PY_COMISO
|
||||
python_export_igl_comiso(m);
|
||||
#endif
|
||||
|
||||
return m.ptr();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user