diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-02-14 21:27:42 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-02-14 21:27:42 +0100 |
commit | f05141f1f78d9e0d917b2cc07f0fb09fd7f62801 (patch) | |
tree | b1cf041fd21359c260e924018c334e157db55f68 /CMakeLists.txt | |
parent | 12cf10a35ca156e4d34f5b2154e01484fdfaf41c (diff) | |
download | rpgedit-f05141f1f78d9e0d917b2cc07f0fb09fd7f62801.tar rpgedit-f05141f1f78d9e0d917b2cc07f0fb09fd7f62801.zip |
Find only Lua 5.2
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d575ce..0cdd80d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(RPGEDIT CXX) find_package(PkgConfig REQUIRED) pkg_check_modules(SDL2 REQUIRED sdl2 SDL2_image) -pkg_check_modules(LUA REQUIRED lua>=5.2) +find_package(Lua 5.2 EXACT REQUIRED) add_subdirectory(src) |