waf

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

wscript_build (203B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 
      4 if bld.env['PYTHON']:
      5 	bld(
      6 			features             = 'test_scripts',
      7 			test_scripts_source  = 'test.py',
      8 			test_scripts_template = '${PYTHON} ${SCRIPT}'
      9 	)
     10 
     11