Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 3, 2008, 5:56:04 PM (15 years ago)
Author:
adrfried
Message:

lua handling fixed again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem/src/tolua/CMakeLists.txt

    r2326 r2335  
    1818TARGET_LINK_LIBRARIES(toluaexe_orxonox tolualib_orxonox ${LUA_LIBRARIES})
    1919
    20 # Determine Lua version and set appropriate pack file
    21 IF(LUA50_FOUND)
     20IF(${LUA_VERSION} VERSION_LESS 5.1)
    2221  SET(TOLUA_ALL_PACK all-5.0.lua)
    23 ELSE(LUA50_FOUND)
     22ELSE(${LUA_VERSION} VERSION_LESS 5.1)
    2423  SET(TOLUA_ALL_PACK all-5.1.lua)
    25 ENDIF(LUA50_FOUND)
     24ENDIF(${LUA_VERSION} VERSION_LESS 5.1)
    2625
    2726SET(TOLUA_PARSER_SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/${TOLUA_ALL_PACK}" PARENT_SCOPE)
Note: See TracChangeset for help on using the changeset viewer.