mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
b694b4667a
move fieldlines code to meshing dir move visualization function pointers to meshing directory DLL_HEADER -> NGGUI_API in visualization lib move soldata.hpp to meshing update occ, no freetype necessary anymore
25 lines
517 B
CMake
25 lines
517 B
CMake
add_subdirectory(core)
|
|
add_subdirectory(general)
|
|
add_subdirectory(gprim)
|
|
add_subdirectory(linalg)
|
|
add_subdirectory(include)
|
|
add_subdirectory(meshing)
|
|
if(USE_OCC)
|
|
add_subdirectory(occ)
|
|
endif(USE_OCC)
|
|
if(USE_STLGEOM)
|
|
add_subdirectory(stlgeom)
|
|
endif(USE_STLGEOM)
|
|
if(USE_GUI)
|
|
add_subdirectory(visualization)
|
|
endif(USE_GUI)
|
|
if(USE_INTERFACE)
|
|
add_subdirectory(interface)
|
|
endif(USE_INTERFACE)
|
|
if(USE_CSG)
|
|
add_subdirectory(csg)
|
|
endif(USE_CSG)
|
|
if(USE_GEOM2D)
|
|
add_subdirectory(geom2d)
|
|
endif(USE_GEOM2D)
|