## -*- python -*-

def build(bld):

    gen = bld(
        features='command',
        source='modulegen.py',
        target='dmodule.cc',
        command='${PYTHON} ${SRC[0]} > ${TGT[0]}')

    if bld.env['CXX']:
        obj = bld(features=['cxx', 'cxxshlib', 'pyext'])
        obj.source = [
            'd.cc',
            'dmodule.cc'
            ]
        obj.target = 'd'
        obj.install_path = None # do not install
        obj.includes = '.'

