This commit is contained in:
Thomas Nagy 2016-11-06 18:29:16 +01:00
parent 9ddb8c27ef
commit 8bea637dc7
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 1 additions and 8 deletions

View File

@ -44,13 +44,6 @@ def configure(conf):
def build(bld):
"""
groups will be processed one by one during the build
the progress bar display will be inaccurate
"""
bld.post_mode = Build.POST_LAZY
import random
rnd = random.randint(0, 25)
bld(
@ -62,7 +55,7 @@ def build(bld):
bld.program(source='main.c', target='app', dynamic_source='*.c')
# support for the "dynamic_source" attribute follows
# support for the "dynamic_source" attribute follows:
from waflib import Build, Utils, TaskGen
@TaskGen.feature('c')