diff options
Diffstat (limited to 'src/plugins/quic/CMakeLists.txt')
-rw-r--r-- | src/plugins/quic/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/quic/CMakeLists.txt b/src/plugins/quic/CMakeLists.txt index 9646c444b21..65bdc32a239 100644 --- a/src/plugins/quic/CMakeLists.txt +++ b/src/plugins/quic/CMakeLists.txt @@ -12,6 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +if(NOT OPENSSL_FOUND) + message(WARNING "OpenSSL not found - quic plugin disabled") + return() +endif() + unset(QUIC_LINK_LIBRARIES) set(EXPECTED_QUICLY_VERSION "0.1.4-vpp") |