2016-09-27 15:01:08 -04:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2018-10-22 10:31:08 -04:00
|
|
|
#[=======================================================================[.rst:
|
|
|
|
FindLua50
|
|
|
|
---------
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-04-12 16:37:05 +02:00
|
|
|
Locate Lua library.
|
|
|
|
This module defines::
|
2018-10-22 10:31:08 -04:00
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Note that the expected include convention is
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
and not
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
#include <lua/lua.h>
|
|
|
|
|
|
|
|
This is because, the lua location is not standardized and may exist in
|
|
|
|
locations other than lua/
|
|
|
|
#]=======================================================================]
|
2007-12-20 20:59:44 -05:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_path(LUA_INCLUDE_DIR lua.h
|
2008-06-09 16:04:06 -04:00
|
|
|
HINTS
|
2012-03-29 00:00:54 +02:00
|
|
|
ENV LUA_DIR
|
2007-12-20 20:59:44 -05:00
|
|
|
PATH_SUFFIXES include/lua50 include/lua5.0 include/lua5 include/lua include
|
|
|
|
PATHS
|
|
|
|
~/Library/Frameworks
|
|
|
|
/Library/Frameworks
|
|
|
|
/opt
|
|
|
|
)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_library(LUA_LIBRARY_lua
|
2009-01-30 03:02:49 -05:00
|
|
|
NAMES lua50 lua5.0 lua-5.0 lua5 lua
|
2008-06-09 16:04:06 -04:00
|
|
|
HINTS
|
2012-03-29 00:00:54 +02:00
|
|
|
ENV LUA_DIR
|
2012-03-29 00:51:06 +02:00
|
|
|
PATH_SUFFIXES lib
|
2007-12-20 20:59:44 -05:00
|
|
|
PATHS
|
|
|
|
~/Library/Frameworks
|
|
|
|
/Library/Frameworks
|
|
|
|
/opt
|
|
|
|
)
|
|
|
|
|
|
|
|
# In an OS X framework, lualib is usually included as part of the framework
|
|
|
|
# (like GLU in OpenGL.framework)
|
2012-08-13 13:47:32 -04:00
|
|
|
if(${LUA_LIBRARY_lua} MATCHES "framework")
|
|
|
|
set( LUA_LIBRARIES "${LUA_LIBRARY_lua}" CACHE STRING "Lua framework")
|
2012-08-13 13:50:14 -04:00
|
|
|
else()
|
2012-08-13 13:47:32 -04:00
|
|
|
find_library(LUA_LIBRARY_lualib
|
2007-12-20 20:59:44 -05:00
|
|
|
NAMES lualib50 lualib5.0 lualib5 lualib
|
2008-06-09 16:04:06 -04:00
|
|
|
HINTS
|
2012-03-29 00:00:54 +02:00
|
|
|
ENV LUALIB_DIR
|
|
|
|
ENV LUA_DIR
|
2012-03-29 00:51:06 +02:00
|
|
|
PATH_SUFFIXES lib
|
2007-12-20 20:59:44 -05:00
|
|
|
PATHS
|
|
|
|
/opt
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
if(LUA_LIBRARY_lualib AND LUA_LIBRARY_lua)
|
2007-12-20 20:59:44 -05:00
|
|
|
# include the math library for Unix
|
2012-08-13 13:47:32 -04:00
|
|
|
if(UNIX AND NOT APPLE)
|
|
|
|
find_library(MATH_LIBRARY_FOR_LUA m)
|
2018-01-03 07:09:54 -05:00
|
|
|
set( LUA_LIBRARIES "${LUA_LIBRARY_lualib};${LUA_LIBRARY_lua};${MATH_LIBRARY_FOR_LUA}" CACHE STRING "This is the concatenation of lua and lualib libraries")
|
2007-12-20 20:59:44 -05:00
|
|
|
# For Windows and Mac, don't need to explicitly include the math library
|
2012-08-13 13:50:14 -04:00
|
|
|
else()
|
2018-01-03 07:09:54 -05:00
|
|
|
set( LUA_LIBRARIES "${LUA_LIBRARY_lualib};${LUA_LIBRARY_lua}" CACHE STRING "This is the concatenation of lua and lualib libraries")
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
2007-12-20 20:59:44 -05:00
|
|
|
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2012-08-13 13:42:58 -04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set LUA_FOUND to TRUE if
|
2008-03-10 13:26:11 -04:00
|
|
|
# all listed variables are TRUE
|
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Lua50 DEFAULT_MSG LUA_LIBRARIES LUA_INCLUDE_DIR)
|
2007-12-20 20:59:44 -05:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(LUA_INCLUDE_DIR LUA_LIBRARIES)
|