Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 27, 2008, 5:14:22 PM (16 years ago)
Author:
rgrieder
Message:

tolua seems to be created correctly. I the existing toluabind.c file to create a tolua application that creates the actual pimped tolua application. But be aware that modifying the *.lua files will not cause a recompile. You need to tell iit manually.

There was quite a stupid issue with static initialisation (I'm really wondering how that could even work with msvc).

However things don't seem to work yet on tardis, at least not remotely. It seems like Ogre can't initialise when using a vnc session. I'll have to look into that locally at ETZ.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/cmake/FindLua.cmake

    r1505 r1651  
    4848    # Found newer lua 5.1 libs
    4949    SET(Lua_FOUND TRUE)
    50     SET(Lua_VERSION 5.1 CACHE STRING "")
     50    SET(Lua_VERSION "5.1" CACHE STRING "")
    5151    SET(Lua_INCLUDE_DIR ${Lua_INCLUDE_DIR_51} CACHE PATH "")
    5252    SET(Lua_LIBRARIES ${Lua_LIBRARY_51} CACHE FILEPATH "")
     
    5656    # Found older lua 5.0 libs
    5757    SET(Lua_FOUND TRUE)
    58     SET(Lua_VERSION 5.0 CACHE STRING "")
     58    SET(Lua_VERSION "5.0" CACHE STRING "")
    5959    SET(Lua_INCLUDE_DIR ${Lua_INCLUDE_DIR_50} CACHE PATH "")
    6060    SET(Lua_LIBRARIES ${Lua_LIBRARY_1_50} ${Lua_LIBRARY_2_50} CACHE FILEPATH "")
Note: See TracChangeset for help on using the changeset viewer.