2016-10-30 18:24:19 +01:00
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
2014-08-03 19:52:23 +02:00
#.rst:
# FindLua50
# ---------
#
#
#
# Locate Lua library This module defines
#
# ::
#
# LUA50_FOUND, if false, do not try to link to Lua
# LUA_LIBRARIES, both lua and lualib
# LUA_INCLUDE_DIR, where to find lua.h and lualib.h (and probably lauxlib.h)
#
#
2008-10-12 18:41:06 +02:00
#
# Note that the expected include convention is
2014-08-03 19:52:23 +02:00
#
# ::
#
# #include "lua.h"
#
2008-10-12 18:41:06 +02:00
# and not
2014-08-03 19:52:23 +02:00
#
# ::
#
# #include <lua/lua.h>
#
# This is because, the lua location is not standardized and may exist in
# locations other than lua/
2008-10-12 18:41:06 +02:00
2013-03-16 19:13:01 +02:00
find_path ( LUA_INCLUDE_DIR lua.h
2008-10-12 21:55:53 +03:00
H I N T S
2013-03-16 19:13:01 +02:00
E N V L U A _ D I R
2008-10-12 18:41:06 +02:00
P A T H _ S U F F I X E S i n c l u d e / l u a 5 0 i n c l u d e / l u a 5 . 0 i n c l u d e / l u a 5 i n c l u d e / l u a i n c l u d e
P A T H S
~ / L i b r a r y / F r a m e w o r k s
/ L i b r a r y / F r a m e w o r k s
/ s w # Fink
/ o p t / l o c a l # DarwinPorts
/ o p t / c s w # Blastwave
/ o p t
)
2013-03-16 19:13:01 +02:00
find_library ( LUA_LIBRARY_lua
2009-02-07 16:14:30 +02:00
N A M E S l u a 5 0 l u a 5 . 0 l u a - 5 . 0 l u a 5 l u a
2008-10-12 21:55:53 +03:00
H I N T S
2013-03-16 19:13:01 +02:00
E N V L U A _ D I R
P A T H _ S U F F I X E S l i b
2008-10-12 18:41:06 +02:00
P A T H S
~ / L i b r a r y / F r a m e w o r k s
/ L i b r a r y / F r a m e w o r k s
/ s w
/ o p t / l o c a l
/ o p t / c s w
/ o p t
)
# In an OS X framework, lualib is usually included as part of the framework
# (like GLU in OpenGL.framework)
2013-03-16 19:13:01 +02:00
if ( ${ LUA_LIBRARY_lua } MATCHES "framework" )
set ( LUA_LIBRARIES "${LUA_LIBRARY_lua}" CACHE STRING "Lua framework" )
else ( )
find_library ( LUA_LIBRARY_lualib
2008-10-12 18:41:06 +02:00
N A M E S l u a l i b 5 0 l u a l i b 5 . 0 l u a l i b 5 l u a l i b
2008-10-12 21:55:53 +03:00
H I N T S
2013-03-16 19:13:01 +02:00
E N V L U A L I B _ D I R
E N V L U A _ D I R
P A T H _ S U F F I X E S l i b
2008-10-12 18:41:06 +02:00
P A T H S
/ s w
/ o p t / l o c a l
/ o p t / c s w
/ o p t
)
2013-03-16 19:13:01 +02:00
if ( LUA_LIBRARY_lualib AND LUA_LIBRARY_lua )
2008-10-12 18:41:06 +02:00
# include the math library for Unix
2013-03-16 19:13:01 +02:00
if ( UNIX AND NOT APPLE )
find_library ( MATH_LIBRARY_FOR_LUA m )
set ( LUA_LIBRARIES "${LUA_LIBRARY_lualib};${LUA_LIBRARY_lua};${MATH_LIBRARY_FOR_LUA}" CACHE STRING "This is the concatentation of lua and lualib libraries" )
2008-10-12 18:41:06 +02:00
# For Windows and Mac, don't need to explicitly include the math library
2013-03-16 19:13:01 +02:00
else ( )
set ( LUA_LIBRARIES "${LUA_LIBRARY_lualib};${LUA_LIBRARY_lua}" CACHE STRING "This is the concatentation of lua and lualib libraries" )
endif ( )
endif ( )
endif ( )
2008-10-12 18:41:06 +02:00
2013-03-16 19:13:01 +02:00
include ( ${ CMAKE_CURRENT_LIST_DIR } /FindPackageHandleStandardArgs.cmake )
# handle the QUIETLY and REQUIRED arguments and set LUA_FOUND to TRUE if
2008-10-12 18:41:06 +02:00
# all listed variables are TRUE
FIND_PACKAGE_HANDLE_STANDARD_ARGS ( Lua50 DEFAULT_MSG LUA_LIBRARIES LUA_INCLUDE_DIR )
2013-03-16 19:13:01 +02:00
mark_as_advanced ( LUA_INCLUDE_DIR LUA_LIBRARIES )
2008-10-12 18:41:06 +02:00