Changeset 2326 for code/branches/buildsystem/src/tolua
- Timestamp:
- Dec 3, 2008, 4:30:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem/src/tolua/CMakeLists.txt
r2275 r2326 18 18 TARGET_LINK_LIBRARIES(toluaexe_orxonox tolualib_orxonox ${LUA_LIBRARIES}) 19 19 20 # TODO: determine lua version and set appropriate pack file 21 SET(TOLUA_ALL_PACK all-5.1.lua) 20 # Determine Lua version and set appropriate pack file 21 IF(LUA50_FOUND) 22 SET(TOLUA_ALL_PACK all-5.0.lua) 23 ELSE(LUA50_FOUND) 24 SET(TOLUA_ALL_PACK all-5.1.lua) 25 ENDIF(LUA50_FOUND) 26 22 27 SET(TOLUA_PARSER_SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/${TOLUA_ALL_PACK}" PARENT_SCOPE) 23 28 SET(TOLUA_PARSER_DEPENDENCIES
Note: See TracChangeset
for help on using the changeset viewer.