You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we force cmake to build mata as a static library by
add_library(libmata STATIC
If we change it to
add_library(libmata
it should by default still be built as a static library, but if BUILD_SHARED_LIBS is on, it will build a shared library.
Do we want to allow this? It might be better to allow it, if somebody wants to use mata as a shared library, so that they do not need to change the cmake file.
The text was updated successfully, but these errors were encountered:
Currently we force cmake to build mata as a static library by
If we change it to
it should by default still be built as a static library, but if BUILD_SHARED_LIBS is on, it will build a shared library.
Do we want to allow this? It might be better to allow it, if somebody wants to use mata as a shared library, so that they do not need to change the cmake file.
The text was updated successfully, but these errors were encountered: