waf

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

wscript_build (171B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 
      4 bld(
      5 	features = 'cxx cxxstlib',
      6 	source   = 'Accumulator.cpp HelloWorld.cpp',
      7 	target   = 'useless',
      8 	export_includes = '.',
      9 )
     10