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
This adds on to the changes in #459 to make it possible to build module, static, and shared libraries all at the same time if requested
To build the module, -DBUILD_MODULE=On; the target name for the module is luv
To build a static library, -DBUILD_STATIC_LIBS=On; the target name for the static lib is libluv_a
To build a shared library, -DBUILD_SHARED_LIBS=On; the target name for the shared lib is libluv
This is a breaking change (as was #459) for users of CMake (e.g. luvi) who will now need to specify linking against libluv/libluv_a and turn on BUILD_SHARED_LIBS/BUILD_STATIC_LIBS before calling add_subdirectory
See luvit/luvi#228 for the changes needed for Luvi's CMakeLists.txt