cmake_modules/FindLua.cmake
changeset 7050 91199321e916
parent 7031 d5ea24399a48
child 7233 225179f64fd8
equal deleted inserted replaced
7049:35d762458d66 7050:91199321e916
     3 # On Android/Windows/OSX this just defines the name of the library that
     3 # On Android/Windows/OSX this just defines the name of the library that
     4 #  will be compiled from our bundled sources
     4 #  will be compiled from our bundled sources
     5 # On Linux it will try to load the system library and fallback to compiling
     5 # On Linux it will try to load the system library and fallback to compiling
     6 #  the bundled one when nothing is found
     6 #  the bundled one when nothing is found
     7 
     7 
     8 set(LUA_FOUND true)
     8 set(LUA_FOUND false)
     9 
     9 
    10 if (ANDROID)
    10 if (ANDROID)
    11 	SET(LUA_DEFAULT "liblua5.1.so")
    11     SET(LUA_DEFAULT "liblua5.1.so")
    12 else (ANDROID)
    12 else (ANDROID)
    13 	IF(WIN32)
    13     IF(WIN32)
    14 		SET(LUA_DEFAULT lua.dll)
    14         SET(LUA_DEFAULT lua.dll)
    15 	ELSE(WIN32)
    15     ELSE(WIN32)
    16 		IF(APPLE)
    16         IF(APPLE)
    17 			SET(LUA_DEFAULT lua)
    17             SET(LUA_DEFAULT lua)
    18 		ELSE(APPLE)
    18         ELSE(APPLE)
    19 	                #locate the system's lua library
    19             #locate the system's lua library
    20 			FIND_LIBRARY(LUA_DEFAULT NAMES lua51 lua5.1 lua-5.1 lua PATHS /lib /usr/lib /usr/local/lib /usr/pkg/lib)
    20             FIND_LIBRARY(LUA_DEFAULT NAMES lua51 lua5.1 lua-5.1 lua PATHS /lib /usr/lib /usr/local/lib /usr/pkg/lib)
    21 			IF(${LUA_DEFAULT} MATCHES "LUA_DEFAULT-NOTFOUND")
    21             IF(${LUA_DEFAULT} MATCHES "LUA_DEFAULT-NOTFOUND")
    22 				#UNSET(LUA_DEFAULT)
    22 	        set(LUA_DEFAULT lua)
    23 				#MESSAGE(FATAL_ERROR "Couldn't find Lua 5.1 library!")
    23                 set(LUA_FOUND true)
    24 				set(LUA_DEFAULT lua)
    24             ELSE()
    25 				set(LUA_FOUND false)
    25                 message(STATUS "LibLua 5.1 found at ${LUA_DEFAULT}")
    26 			ELSE()
    26                 #remove the path (fpc doesn't like it - why?)
    27 				message(STATUS "LibLua 5.1 found at ${LUA_DEFAULT}")
    27                 GET_FILENAME_COMPONENT(LUA_DEFAULT ${LUA_DEFAULT} NAME)
    28 				#remove the path (fpc doesn't like it - why?)
    28             ENDIF()
    29 				GET_FILENAME_COMPONENT(LUA_DEFAULT ${LUA_DEFAULT} NAME)
    29         ENDIF(APPLE)
    30 			ENDIF()
    30     ENDIF(WIN32)
    31                 ENDIF(APPLE)
       
    32 	ENDIF(WIN32)
       
    33 ENDIF(ANDROID)
    31 ENDIF(ANDROID)
       
    32 
    34 SET(LUA_LIBRARY ${LUA_DEFAULT} CACHE STRING "Lua library to link to; file name without path only!")
    33 SET(LUA_LIBRARY ${LUA_DEFAULT} CACHE STRING "Lua library to link to; file name without path only!")
    35 #UNSET(LUA_DEFAULT)
    34