Files
2021-06-20 13:39:17 +08:00

21 lines
455 B
Python

## -*- python -*-
def build(bld):
gen = bld(
features='command',
source='modulegen.py',
target='fmodule.cc',
command='${PYTHON} ${SRC[0]} > ${TGT[0]}')
if bld.env['CXX']:
obj = bld(features=['cxx', 'cxxshlib', 'pyext'])
obj.source = [
'f.cc',
'fmodule.cc'
]
obj.target = 'f'
obj.install_path = None # do not install
obj.includes = '.'