Changeset 2335 for code/branches/buildsystem
- Timestamp:
- Dec 3, 2008, 5:56:04 PM (16 years ago)
- Location:
- code/branches/buildsystem
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem/CMakeLists.txt
r2325 r2335 63 63 64 64 # Require Lua 5.0 or 5.1 65 FIND_PACKAGE(Lua50 QUIET) 66 IF(NOT LUA50_FOUND) 67 FIND_PACKAGE(Lua51 REQUIRED) 68 ENDIF(NOT LUA50_FOUND) 65 FIND_PACKAGE(Lua50 REQUIRED) 66 #IF(NOT LUA50_FOUND) 67 # FIND_PACKAGE(Lua51 REQUIRED) 68 #ENDIF(NOT LUA50_FOUND) 69 # Determine Lua version 70 FILE(STRINGS "${LUA_INCLUDE_DIR}/lua.h" LUA_VERSION REGEX "LUA_VERSION") 71 STRING(REGEX REPLACE "^.*\"Lua (.*)\".*$" "\\1" LUA_VERSION "${LUA_VERSION}") 69 72 70 73 # Don't require the whole tcl rat tail -
code/branches/buildsystem/src/tolua/CMakeLists.txt
r2326 r2335 18 18 TARGET_LINK_LIBRARIES(toluaexe_orxonox tolualib_orxonox ${LUA_LIBRARIES}) 19 19 20 # Determine Lua version and set appropriate pack file 21 IF(LUA50_FOUND) 20 IF(${LUA_VERSION} VERSION_LESS 5.1) 22 21 SET(TOLUA_ALL_PACK all-5.0.lua) 23 ELSE( LUA50_FOUND)22 ELSE(${LUA_VERSION} VERSION_LESS 5.1) 24 23 SET(TOLUA_ALL_PACK all-5.1.lua) 25 ENDIF( LUA50_FOUND)24 ENDIF(${LUA_VERSION} VERSION_LESS 5.1) 26 25 27 26 SET(TOLUA_PARSER_SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/${TOLUA_ALL_PACK}" PARENT_SCOPE)
Note: See TracChangeset
for help on using the changeset viewer.