Skip to content

1.34.2-1

Compare
Choose a tag to compare
@squeek502 squeek502 released this 29 Feb 06:34
02237cd
  • CMake: Add BUILD_STATIC_LIBS option (#461)
    • 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