2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-26 11:51:20 +01:00
waf/playground/folder_hashing/wscript
2011-09-10 11:13:51 +02:00

13 lines
242 B
Python

#! /usr/bin/env python
# encoding: utf-8
def configure(conf):
conf.load('fhash', tooldir='.')
def build(bld):
node = bld.path.get_bld().make_node('test/bar/stuff')
bld(features='mkdir', target=node)
bld(rule='du ${SRC}', source=node)