ardour/share/midi_maps/wscript
Mads Kiilerich d220f477ed wscript: drop unused "mandatory variables" 'top' and 'out' in libs
Variables by these names are only used from the local wscript and when
running "waf configure", which already for other reasons only can run at
the top-level.

These variables are thus not mandatory and not used.
2023-09-17 07:34:55 -06:00

15 lines
247 B
Python

#!/usr/bin/env python
import os
def configure(conf):
pass
def build(bld):
maps = bld.path.ant_glob ('*.map')
bld.install_files (os.path.join(bld.env['DATADIR'], 'midi_maps'),
maps)
def options(opt):
pass