scraps

Abandon all hope, ye who enter here.
git clone https://git.neptards.moe/neptards/scraps.git
Log | Files | Refs | Submodules | README | LICENSE

wscript_tinyxml (465B)


      1 # -*- python -*-
      2 
      3 def options(ctx):
      4     # ctx.system_opt('tinyxml', cross=True)
      5     pass
      6 
      7 def configure(ctx):
      8     pass
      9 
     10 def build(ctx):
     11     # if ctx.env.WITH_TINYXML != 'bundle': return
     12 
     13     ctx.objects(idx             = 10100,
     14                 source          = 'tinyxml2/tinyxml2.cpp',
     15                 includes        = 'tinyxml2',
     16                 export_includes = 'tinyxml2',
     17                 target          = 'tinyxml',
     18                 uselib          = 'EXT')