mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
1430b89e39
- Replace PYBIND11_PLUGIN with PYBIND11_MODULE - Fix warnings about symbol visibility by replacing 'namespace pybind11' with 'namespace PYBIND11_NAMESPACE' - Pybind sets the default visibility of its namespace to 'hidden' Thus, our export functions like ExportCSG(py::module &m) also are hidden by default. To work around that define DLL_HEADER '__attribute__ ((visibility ("default"))) on GNUC platforms.
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
// a wrapper to load netgen-dll into python
|
|
|
|
#include <iostream>
|
|
#include <../general/ngpython.hpp>
|
|
|
|
#ifdef WIN32
|
|
#define DLL_HEADER __declspec(dllimport)
|
|
#else
|
|
#define DLL_HEADER
|
|
#endif
|
|
|
|
|
|
void DLL_HEADER ExportNetgenMeshing(py::module &m);
|
|
void DLL_HEADER ExportMeshVis(py::module &m);
|
|
void DLL_HEADER ExportCSG(py::module &m);
|
|
void DLL_HEADER ExportCSGVis(py::module &m);
|
|
void DLL_HEADER ExportGeom2d(py::module &m);
|
|
void DLL_HEADER ExportSTL(py::module &m);
|
|
void DLL_HEADER ExportSTLVis(py::module &m);
|
|
#ifdef OCCGEOMETRY
|
|
void DLL_HEADER ExportNgOCC(py::module &m);
|
|
#endif // OCCGEOMETRY
|
|
|
|
PYBIND11_MODULE(libngpy, ngpy)
|
|
{
|
|
py::module meshing = ngpy.def_submodule("_meshing", "pybind meshing module");
|
|
ExportNetgenMeshing(meshing);
|
|
py::module csg = ngpy.def_submodule("_csg", "pybind csg module");
|
|
ExportCSG(csg);
|
|
py::module geom2d = ngpy.def_submodule("_geom2d", "pybind geom2d module");
|
|
ExportGeom2d(geom2d);
|
|
py::module stl = ngpy.def_submodule("_stl", "pybind stl module");
|
|
ExportSTL(stl);
|
|
#ifdef OCCGEOMETRY
|
|
py::module NgOCC = ngpy.def_submodule("_NgOCC", "pybind NgOCC module");
|
|
ExportNgOCC(NgOCC);
|
|
#endif // OCCGEOMETRY
|
|
#ifdef OPENGL
|
|
py::module meshvis = ngpy.def_submodule("meshvis", "pybind meshvis module");
|
|
ExportMeshVis(meshvis);
|
|
py::module csgvis = ngpy.def_submodule("csgvis", "pybind csgvis module");
|
|
ExportCSGVis(csgvis);
|
|
py::module stlvis = ngpy.def_submodule("stlvis", "pybind stlvis module");
|
|
ExportSTLVis(stlvis);
|
|
#endif // OPENGL
|
|
}
|
|
|
|
// Force linking libnglib to libnetgenpy
|
|
namespace netgen
|
|
{
|
|
void MyBeep (int i);
|
|
void MyDummyToForceLinkingNGLib()
|
|
{
|
|
MyBeep(0);
|
|
}
|
|
}
|