ardour/share/osc/wscript
Robin Gareus 54c4d3adc5
Clean up top-level source tree
Collect architecture independent data in 'share' subfolder.
This also matches the install path
2020-02-23 16:21:55 +01:00

17 lines
248 B
Python

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