waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

wscript (196B)


      1 def configure(ctx):
      2 	ctx.load("compiler_c compiler_cxx")
      3 
      4 def build(bld):
      5 	bld.program(
      6 	 source="b.cpp a.c main.c",
      7 	 target="program",
      8 	)
      9 
     10 def options(opt):
     11 	opt.load("compiler_c compiler_cxx")