Disable NetgenPlugin for gcc and mingw

This commit is contained in:
wmayer
2013-04-01 17:40:52 +02:00
parent 23ae910069
commit 8b0bf33344
6 changed files with 98 additions and 53 deletions

View File

@@ -22,11 +22,11 @@ link_directories(${OCC_LIBRARY_DIR})
set(Fem_LIBS
Part
Mesh
Mesh
FreeCADApp
StdMeshers
NETGENPlugin
SMESH
StdMeshers
NETGENPlugin
SMESH
)
generate_from_xml(FemMeshPy)

View File

@@ -1,9 +1,11 @@
if (MSVC)
add_subdirectory(App)
if(FREECAD_BUILD_GUI)
add_subdirectory(Gui)
endif(FREECAD_BUILD_GUI)
INSTALL(
FILES
Init.py
@@ -13,3 +15,5 @@ INSTALL(
DESTINATION
Mod/Fem
)
endif(MSVC)

View File

@@ -15,7 +15,7 @@ include_directories(
${ZLIB_INCLUDE_DIR}
${PYTHON_INCLUDE_PATH}
${XERCESC_INCLUDE_DIR}
${SMESH_INCLUDE_DIR}
${SMESH_INCLUDE_DIR}
)
@@ -25,9 +25,9 @@ link_directories(${OCC_LIBRARY_DIR})
set(MeshPart_LIBS
Part
Mesh
StdMeshers
NETGENPlugin
SMESH
StdMeshers
#NETGENPlugin
SMESH
)

View File

@@ -25,10 +25,16 @@ link_directories(${OCC_LIBRARY_DIR})
set(Part_LIBS
${OCC_LIBRARIES}
${OCC_DEBUG_LIBRARIES}
${FREETYPE_LIBRARY}
FreeCADApp
)
if(FREECAD_USE_FREETYPE)
set(Part_LIBS
${Part_LIBS}
${FREETYPE_LIBRARY}
)
endif(FREECAD_USE_FREETYPE)
generate_from_xml(ArcPy)
generate_from_xml(ArcOfCirclePy)
generate_from_xml(CirclePy)