OSC: Add preset loading to OSC GUI

This commit is contained in:
Len Ovens
2016-08-24 10:07:21 -07:00
parent 427d9f888a
commit 7ccbc0ca73
5 changed files with 533 additions and 140 deletions

16
osc/wscript Normal file
View File

@@ -0,0 +1,16 @@
#!/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