Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 29, 2009, 9:04:27 PM (15 years ago)
Author:
rgrieder
Message:

Prefixed library directory for each internal third party library.
From now on, include for instance <tolua/tolua++> instead of <tolua++.h>
This may avoid problems if external include directories because some of our includes our modified. Consider e.g. ENet to be in /usr/include/enet/enet.h. Then you will have /usr/inlcude as include directory, possibly revealing an installed version of, say, TinyXML++.

File:
1 edited

Legend:

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

    r2520 r2610  
    121121
    122122    output('#ifndef __cplusplus\n')
    123     output('#include "stdlib.h"\n')
     123    output('#include <stdlib.h>\n')
    124124    output('#endif\n')
    125     output('#include "string.h"\n\n')
    126     output('#include "tolua++.h"\n\n')
     125    output('#include <string.h>\n\n')
     126    output('#include <tolua/tolua++.h>\n\n')
    127127
    128128    if flags.H then
Note: See TracChangeset for help on using the changeset viewer.