summaryrefslogtreecommitdiff
path: root/cmake/modules/FindLUA.cmake
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2015-04-20 16:36:06 +0100
committerGraham Bloice <graham.bloice@trihedral.com>2015-04-20 16:46:38 +0000
commit4e9ff477d90bad4ecbdaa9d39af872cd21eda858 (patch)
tree120fcffb9b03fe5554dd61182fc6d436f7b7cc1f /cmake/modules/FindLUA.cmake
parent262625b7ba566950bc4f80a97ec7b6f35c6e4718 (diff)
downloadwireshark-4e9ff477d90bad4ecbdaa9d39af872cd21eda858.tar.gz
CMake minor updates
Fix up generation messages for Windows build Remove some superfluous Lua messages Change-Id: I405e7edfcb043fc842fe4f0cca8d23d5755527f9 Reviewed-on: https://code.wireshark.org/review/8138 Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
Diffstat (limited to 'cmake/modules/FindLUA.cmake')
-rw-r--r--cmake/modules/FindLUA.cmake3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmake/modules/FindLUA.cmake b/cmake/modules/FindLUA.cmake
index 472572adaf..68ee4c975b 100644
--- a/cmake/modules/FindLUA.cmake
+++ b/cmake/modules/FindLUA.cmake
@@ -49,8 +49,6 @@ string( REGEX REPLACE ".*[/\\]lua(.+)$" "\\1" LUA_INC_SUFFIX "${LUA_INCLUDE_DIR}
if ( LUA_INCLUDE_DIR STREQUAL LUA_INC_SUFFIX )
set( LUA_INC_SUFFIX "")
endif()
-message("LUA INCLUDE SUFFIX: ${LUA_INC_SUFFIX}")
-
FIND_LIBRARY(LUA_LIBRARY
NAMES lua${LUA_INC_SUFFIX} lua52 lua5.2 lua51 lua5.1 lua
@@ -74,7 +72,6 @@ INCLUDE(FindPackageHandleStandardArgs)
# handle the QUIETLY and REQUIRED arguments and set LUA_FOUND to TRUE if
# all listed variables are TRUE
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LUA DEFAULT_MSG LUA_LIBRARY LUA_INCLUDE_DIR)
-message("LUA INCLUDEs version: ${LUA_VERSION}")
IF(LUA_LIBRARY)
SET( LUA_LIBRARIES "${LUA_LIBRARY}")