Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 22, 2008, 7:17:46 PM (15 years ago)
Author:
rgrieder
Message:
  • Complete out-of-source builds working now with msvc (moved tolua files generation from the source to the build directory)
  • Bugfix in doit.lua and package.lua: Absolute windows paths don't start with a "\" but rather with a "X:"
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/src/tolua/lua/package.lua

    r2509 r2520  
    252252        local file
    253253        if flags.f then
    254             if string.sub(flags.f, 1, 1) == '/' or string.sub(flags.f, 1, 1) == '\\' then
     254            if string.sub(flags.f, 1, 1) == '/' or string.sub(flags.f, 1, 1) == '\\' or (string.len(flags.f) > 1 and string.sub(flags.f, 2, 2) == ':') then
    255255                file = flags.f
    256256            else
Note: See TracChangeset for help on using the changeset viewer.