mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-16 23:19:50 +01:00
25 lines
419 B
Python
25 lines
419 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2015 (ita)
|
|
|
|
"""
|
|
Override the build commands to write empty files.
|
|
This is useful for profiling and evaluating the Python overhead.
|
|
|
|
To use::
|
|
|
|
def build(bld):
|
|
...
|
|
bld.load('nobuild')
|
|
|
|
"""
|
|
|
|
from waflib import Task
|
|
def build(bld):
|
|
def run(self):
|
|
for x in self.outputs:
|
|
x.write('')
|
|
for (name, cls) in Task.classes.items():
|
|
cls.run = run
|
|
|