OSC: Add preset loading to OSC GUI
This commit is contained in:
10
osc/TTC2.preset
Normal file
10
osc/TTC2.preset
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<OSCPreset>
|
||||
<Name value="TTC2"/>
|
||||
<PortMode value="1"/>
|
||||
<Remote-Port value="8000"/>
|
||||
<Bank-Size value="0"/>
|
||||
<Strip-Types value="3"/>
|
||||
<Feedback value="605"/>
|
||||
<Gain-Mode value="1"/>
|
||||
</OSCPreset>
|
||||
16
osc/wscript
Normal file
16
osc/wscript
Normal 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
|
||||
Reference in New Issue
Block a user