diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2024-04-09 18:54:14 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2024-04-09 18:54:14 +0200 |
commit | 2aa0a6231c8f13435e3989951ffe05740112e59a (patch) | |
tree | 2c9e66d534f44f63f54ede7bd67b62a3ba02b08e | |
parent | 56a2a58ed6347c2b00c4842c128561e201b32322 (diff) | |
download | logdiag-2aa0a6231c8f13435e3989951ffe05740112e59a.tar.gz logdiag-2aa0a6231c8f13435e3989951ffe05740112e59a.tar.xz logdiag-2aa0a6231c8f13435e3989951ffe05740112e59a.zip |
Accept Lua 5.4 specifically
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d942601..9164d31 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -75,7 +75,8 @@ pkg_check_modules (GTK3 REQUIRED gtk+-3.0 json-glib-1.0) link_directories (${GTK3_LIBRARY_DIRS}) if (NOT WIN32) - pkg_search_module (Lua REQUIRED lua>=5.2 lua5.3 lua-5.3 lua5.2 lua-5.2) + pkg_search_module (Lua REQUIRED lua>=5.2 + lua5.4 lua-5.4 lua5.3 lua-5.3 lua5.2 lua-5.2) link_directories (${Lua_LIBRARY_DIRS}) else () # For whatever reason this now seems to be required |