Browse Source

cmake/kamcmd: Don't require readline

Xenofon Karamanos 8 months ago
parent
commit
5a5a9fc876
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/kamcmd/CMakeLists.txt

+ 1 - 1
utils/kamcmd/CMakeLists.txt

@@ -15,7 +15,7 @@ add_executable(${NAME})
 
 # detect libreadline
 find_package(PkgConfig REQUIRED)
-pkg_check_modules(READLINE REQUIRED IMPORTED_TARGET readline)
+pkg_check_modules(READLINE IMPORTED_TARGET readline)
 add_library(readline::readline ALIAS PkgConfig::READLINE)
 
 if(READLINE_FOUND)