diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-07-04 08:05:03 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-07-04 08:06:31 +0200 |
commit | cabd2bad9baa36b32f26e7ef7e3247b72b2552f3 (patch) | |
tree | 99f47f2ea66eb976aae4a9bf3220a4b78fbe73e9 | |
parent | f0583e3d1a3c9f8fa75aaa58780e2370c7c6befe (diff) | |
download | ponymap-cabd2bad9baa36b32f26e7ef7e3247b72b2552f3.tar.gz ponymap-cabd2bad9baa36b32f26e7ef7e3247b72b2552f3.tar.xz ponymap-cabd2bad9baa36b32f26e7ef7e3247b72b2552f3.zip |
CMakeLists.txt: link properly
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fb004be..900655e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,7 +59,7 @@ link_directories (${libssl_LIBRARY_DIRS} ${jansson_LIBRARY_DIRS}) foreach (extra iconv dl rt) find_library (extra_lib_${extra} ${extra}) if (extra_lib_${extra}) - list (APPEND project_libraries ${extra}) + list (APPEND project_libraries ${extra_lib_${extra}}) endif () endforeach () |