waf

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

wscript_build (285B)


      1 #! /usr/bin/env python
      2 
      3 bld.stlib (
      4   target = 'static_lib1',
      5   source = ['src/static_lib.vala'],
      6 )
      7 
      8 bld.stlib (
      9   target = 'static_lib2',
     10   source = ['src/static_lib.vala'],
     11   vala_dir = 'meh',
     12 )
     13 
     14 bld.program (
     15   target = 'program',
     16   use = 'static_lib1',
     17   source = 'program.vala'
     18 )