fixes for python on linux

This commit is contained in:
Daniele Panozzo
2015-10-06 15:48:55 +02:00
parent b2fbf1164f
commit 9f467b8009
2 changed files with 9 additions and 1 deletions
+7
View File
@@ -5,7 +5,10 @@
extern void python_export_vector(py::module &);
extern void python_export_igl(py::module &);
#ifdef PY_VIEWER
extern void python_export_igl_viewer(py::module &);
#endif
#ifdef PY_COMISO
extern void python_export_igl_comiso(py::module &);
@@ -17,7 +20,11 @@ PYTHON_PLUGIN(igl) {
python_export_vector(m);
python_export_igl(m);
#ifdef PY_VIEWER
python_export_igl_viewer(m);
#endif
#ifdef PY_COMISO
python_export_igl_comiso(m);