There's no way to disable the install rules for the crypto, ssl, and tls targets (not even LIBRESSL_SKIP_INSTALL skips those), so if you enable CMAKE_SKIP_INSTALL_RULES, you get hit with:
CMake Warning in CMakeLists.txt:
CMAKE_SKIP_INSTALL_RULES was enabled even though installation rules have
been specified
You might want to avoid calling install() if CMAKE_SKIP_INSTALL_RULES is set.
There's no way to disable the install rules for the
crypto,ssl, andtlstargets (not evenLIBRESSL_SKIP_INSTALLskips those), so if you enableCMAKE_SKIP_INSTALL_RULES, you get hit with:You might want to avoid calling
install()ifCMAKE_SKIP_INSTALL_RULESis set.