I'm trying to configure Cmake to build static netgen libraries and have gotten quite far by basically setting
set(NG_LIB_TYPE SHARED)
add_library(nglib STATIC nglib.cpp ${nglib_objects})
to STATIC instead of SHARED which has built most static .a libs, but I can't seem to find how to configure libngcore.so to build statically. Does anyone have any idea or tips what or where to change (new to cmake so just trying to do it by trial and error).