You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
waf_old/playground/use/wscript

18 lines
291 B
Python

#! /usr/bin/env python
def options(ctx):
ctx.load('compiler_c')
def configure(ctx):
ctx.load('compiler_c')
def build(ctx):
sub = ctx.recurse
sub('fakelibs')
sub('objects')
sub('order')
sub('transitivity')
sub('headers')
#sub('cycle') # this must raise an error during the build