waf

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

wscript (412B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 # Grygoriy Fuchedzhy 2009
      4 
      5 top = '.'
      6 out = 'out'
      7 
      8 def options(opt):
      9 	opt.load('compiler_cxx')
     10 
     11 def configure(conf):
     12 	#conf.recurse('gni')
     13 	conf.load('compiler_cxx')
     14 	conf.load('fluid')
     15 
     16 def build(bld):
     17 	bld.program(
     18 		target   = 'sample',
     19 		source   = 'main.cpp PopupDialog.fl UserInterface.fl',
     20 		includes = '.',
     21 		install_path = '${PREFIX}/bin/',
     22 		use      = 'FLTK')
     23