libshit

Just some random shit
git clone https://git.neptards.moe/neptards/libshit.git
Log | Files | Refs | Submodules | README | LICENSE

wscript (543B)


      1 # -*- mode: python -*-
      2 
      3 subdirs = [
      4     # start with libcxx, other c++ libs depend on it
      5     'libcxx',
      6     'boost', 'doctest', 'tracy',
      7 ]
      8 
      9 def options(ctx):
     10     ctx.recurse_subdirs('options', subdirs)
     11     ctx.recurse('.', name='options', wscript='wscript_lua', once=False)
     12 
     13 def configure(ctx):
     14     ctx.recurse_subdirs('configure', subdirs)
     15     ctx.recurse('.', name='configure', wscript='wscript_lua', once=False)
     16 
     17 def build(ctx):
     18     ctx.recurse_subdirs('build', subdirs)
     19     ctx.recurse('.', name='build', wscript='wscript_lua', once=False)