From c9357132fad3abdb2e2a0d2f34b8b4142b1b1838 Mon Sep 17 00:00:00 2001 From: mcuee Date: Sat, 19 Nov 2022 17:22:04 +0800 Subject: [PATCH] Print HAVE_LIBREADLINE status --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 400da29f..1269650d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -361,6 +361,12 @@ else() message(STATUS "DON'T HAVE libftdi1") endif() +if(HAVE_LIBREADLINE) + message(STATUS "DO HAVE libreadline") +else() + message(STATUS "DON'T HAVE libreadline") +endif() + if(BUILD_DOC) message(STATUS "ENABLED doc") else()