Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 20, 2008, 8:51:44 PM (17 years ago)
Author:
rgrieder
Message:
  • Changed working directory for tolua generator to library_output_path. That resolves windows issues with dlls.
  • Removed the need to create a second tolua application. There is only one now called toluaexe_orxonox.
  • 'w' (working directory) option of tolua extends to -L, pkg-file, -o and -H if of course -w is present
  • 's' option added to tolua: Tells which file contains the bindfile generator. In our case this is src/tolua/all.lua all.lua replaces tolua-5.1.pkg. We can still choose that file from CMake (TOLUA_PARSER_SOURCE)
  • Generator dependencies are declared in src/tolua/CMakeLists.txt and used in UseTolua.cmake (PARENT_SCOPE)
  • Fixed a bug when writing the header file inclusion in package.lua
File:
1 moved

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem/src/tolua/all.lua

    • Property svn:mergeinfo set to (toggle deleted branches)
      /code/branches/ceguilua/src/tolua/lua/all.lua1802-1808
      /code/branches/core3/src/tolua/lua/all.lua1572-1739
      /code/branches/gcc43/src/tolua/lua/all.lua1580
      /code/branches/gui/src/tolua/lua/all.lua1635-1723
      /code/branches/input/src/tolua/lua/all.lua1629-1636
    r2235 r2236  
    1 dofile(path.."compat-5.1.lua")
    2 dofile(path.."compat.lua")
    3 dofile(path.."basic.lua")
    4 dofile(path.."feature.lua")
    5 dofile(path.."verbatim.lua")
    6 dofile(path.."code.lua")
    7 dofile(path.."typedef.lua")
    8 dofile(path.."container.lua")
    9 dofile(path.."package.lua")
    10 dofile(path.."module.lua")
    11 dofile(path.."namespace.lua")
    12 dofile(path.."define.lua")
    13 dofile(path.."enumerate.lua")
    14 dofile(path.."declaration.lua")
    15 dofile(path.."variable.lua")
    16 dofile(path.."array.lua")
    17 dofile(path.."function.lua")
    18 dofile(path.."operator.lua")
    19 dofile(path.."class.lua")
    20 dofile(path.."clean.lua")
    21 --dofile(path.."custom.lua")
    22 dofile(path.."doit.lua")
     1dofile(path.."lua/compat-5.1.lua")
     2dofile(path.."lua/compat.lua")
     3dofile(path.."lua/basic.lua")
     4dofile(path.."lua/feature.lua")
     5dofile(path.."lua/verbatim.lua")
     6dofile(path.."lua/code.lua")
     7dofile(path.."lua/typedef.lua")
     8dofile(path.."lua/container.lua")
     9dofile(path.."lua/package.lua")
     10dofile(path.."lua/module.lua")
     11dofile(path.."lua/namespace.lua")
     12dofile(path.."lua/define.lua")
     13dofile(path.."lua/enumerate.lua")
     14dofile(path.."lua/declaration.lua")
     15dofile(path.."lua/variable.lua")
     16dofile(path.."lua/array.lua")
     17dofile(path.."lua/function.lua")
     18dofile(path.."lua/operator.lua")
     19dofile(path.."lua/class.lua")
     20dofile(path.."lua/clean.lua")
     21--dofile(path.."lua/custom.lua")
     22dofile(path.."lua/doit.lua")
    2323
    2424local err,msg = xpcall(doit, debug.traceback)
Note: See TracChangeset for help on using the changeset viewer.