waf

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

wscript (314B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 # Thomas Nagy, 2010 (ita)
      4 
      5 """
      6 help welcome to improve this demo folder
      7 """
      8 
      9 APPNAME = 'app'
     10 
     11 def configure(conf):
     12 	conf.load('gnu_dirs intltool')
     13 
     14 def build(bld):
     15 	bld.recurse('data')
     16 	bld(features='intltool_po', appname=APPNAME, podir='po', install_path="${LOCALEDIR}")
     17