cmake_modules/FindLua.cmake
author smxx
Fri, 26 Mar 2010 00:37:36 +0000
changeset 3067 330e60f5dde8
parent 2925 d088b5f813c9
child 3125 f110cc84ac50
permissions -rw-r--r--
CMake: * Finally auto detect Lua system libraries on ALL unix/linux systems (hope so) * Fixed first time configure for hwengine (tried to set LUA_LIBRARY before triggering detection)

# Find the Lua library
#

IF(NOT LUA_LIBRARY)
	IF(WIN32)
		SET(LUA_DEFAULT lua.dll)
	ELSE(WIN32)
		IF(APPLE)
			SET(LUA_DEFAULT lua)
		ELSE(APPLE)
			#locate the system's lua library
			FIND_LIBRARY(LUA_DEFAULT NAMES lua51 lua5.1 lua-5.1 lua PATHS /lib /usr/lib /usr/local/lib /usr/pkg/lib)
			#remove the path (fpc doesn't like it - why?)
			GET_FILENAME_COMPONENT(LUA_DEFAULT ${LUA_DEFAULT} NAME)
		ENDIF(APPLE)
	ENDIF(WIN32)
	SET(LUA_LIBRARY ${LUA_DEFAULT} CACHE STRING "Lua library to link to; file name without path only!")
	UNSET(LUA_DEFAULT)
ENDIF(NOT LUA_LIBRARY)