diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-10-30 16:46:26 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-10-30 16:48:02 +0100 |
commit | af5929a38373b65e58d781b603884f55e22f3482 (patch) | |
tree | aa594abd711b81662bb006dae60a1f1f5be26192 | |
parent | 9f5845fc51b9bfef60516b7f5c96f0d26e856a46 (diff) | |
download | json-rpc-shell-af5929a38373b65e58d781b603884f55e22f3482.tar.gz json-rpc-shell-af5929a38373b65e58d781b603884f55e22f3482.tar.xz json-rpc-shell-af5929a38373b65e58d781b603884f55e22f3482.zip |
CMakeLists.txt: fix copy-pasted variable name
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 69d0453..1f9e2d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,9 +58,9 @@ elseif (WANT_READLINE) # OpenBSD's default readline is too old if ("${CMAKE_SYSTEM_NAME}" MATCHES "OpenBSD") include_directories (${OPENBSD_LOCALBASE}/include/ereadline) - list (APPEND degesch_libraries ereadline) + list (APPEND project_libraries ereadline) else () - list (APPEND degesch_libraries readline) + list (APPEND project_libraries readline) endif () elseif (WANT_LIBEDIT) pkg_check_modules (libedit REQUIRED libedit) |