diff options
author | Erik Schilling <git@ablu.org> | 2018-09-13 16:31:56 +0200 |
---|---|---|
committer | Erik Schilling <git@ablu.org> | 2018-09-13 16:32:46 +0200 |
commit | 38e615462114c26c9f14cb52a79c36a3e3487a99 (patch) | |
tree | ad24218f91facc60e48cd60185b98f892ea14937 /src | |
parent | ff51df4711e0146662117ae0a5f91f60cf1acf81 (diff) | |
download | manaserv-38e615462114c26c9f14cb52a79c36a3e3487a99.tar.gz manaserv-38e615462114c26c9f14cb52a79c36a3e3487a99.tar.bz2 manaserv-38e615462114c26c9f14cb52a79c36a3e3487a99.tar.xz manaserv-38e615462114c26c9f14cb52a79c36a3e3487a99.zip |
Do not search for old lua explicitly
We also support the newer versions and systems like Fedora do not ship
the older lua versions.
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3ca1f2c3..b8285af5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -79,7 +79,7 @@ ENDIF() # If the Lua scripting language support is enabled... IF (ENABLE_LUA) - FIND_PACKAGE(Lua51 REQUIRED) + FIND_PACKAGE(Lua REQUIRED) INCLUDE_DIRECTORIES(${LUA_INCLUDE_DIR}) SET(FLAGS "${FLAGS} -DBUILD_LUA") SET(OPTIONAL_LIBRARIES ${OPTIONAL_LIBRARIES} ${LUA_LIBRARIES}) |