waf/playground/folder_hashing/wscript

13 lines
244 B
Plaintext
Raw Normal View History

2011-09-10 11:13:51 +02:00
#! /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)
2017-01-21 12:50:52 +01:00
bld(rule='du ${SRC}', source=[node])
2011-09-10 11:13:51 +02:00