author | Xeli |
Sat, 24 Mar 2012 15:52:07 +0100 | |
changeset 6812 | 929b467c7277 |
parent 3145 | a9af6bf223cf |
child 6813 | 48c3462ddce9 |
permissions | -rw-r--r-- |
2924 | 1 |
# Find the Lua library |
2 |
# |
|
3 |
||
3134 | 4 |
IF(WIN32) |
5 |
SET(LUA_DEFAULT lua.dll) |
|
6 |
ELSE(WIN32) |
|
7 |
IF(APPLE) |
|
8 |
SET(LUA_DEFAULT lua) |
|
9 |
ELSE(APPLE) |
|
6812
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
10 |
if (ANDROID) |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
11 |
SET(LUA_DEFAULT "liblua5.1.so") |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
12 |
else (ANDROID) |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
13 |
#locate the system's lua library |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
14 |
FIND_LIBRARY(LUA_DEFAULT NAMES lua51 lua5.1 lua-5.1 lua PATHS /lib /usr/lib /usr/local/lib /usr/pkg/lib) |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
15 |
IF(${LUA_DEFAULT} MATCHES "LUA_DEFAULT-NOTFOUND") |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
16 |
#UNSET(LUA_DEFAULT) |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
17 |
MESSAGE(FATAL_ERROR "Couldn't find Lua 5.1 library!") |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
18 |
ENDIF() |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
19 |
#remove the path (fpc doesn't like it - why?) |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
20 |
GET_FILENAME_COMPONENT(LUA_DEFAULT ${LUA_DEFAULT} NAME) |
929b467c7277
fixed some typo's. LUA_LIBRARY now points to the right name, regardless of the host machine. Running cmake after a bad attempt (ie forgot to add paths to PATH) now works rather than having to clean the cache
Xeli
parents:
3145
diff
changeset
|
21 |
ENDIF(ANDROID) |
3134 | 22 |
ENDIF(APPLE) |
23 |
ENDIF(WIN32) |
|
24 |
SET(LUA_LIBRARY ${LUA_DEFAULT} CACHE STRING "Lua library to link to; file name without path only!") |
|
3145 | 25 |
#UNSET(LUA_DEFAULT) |