cmake_modules/FindLua.cmake
author smxx
Sat, 27 Mar 2010 14:03:30 +0000
changeset 3107 1fa539758c10
parent 3067 330e60f5dde8
child 3125 f110cc84ac50
permissions -rw-r--r--
Engine: * Added possibility to fade the screen in/out using black or white * Added flash effect to screenshot key * Added fade in for round start * Added fade out for round end * Goal display now ignores first tick. So long loading times no longer "eat" their visibility time.

# 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)