summaryrefslogtreecommitdiff
path: root/osc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-02-23 15:26:48 +0100
committerRobin Gareus <robin@gareus.org>2020-02-23 16:21:55 +0100
commit54c4d3adc5f0cea54457df04af44397825fc2679 (patch)
treef73f78a3090dac4eeba87eb04657279997a70da3 /osc
parent96ef1dc0ed9862bf4937d182f789edd20c17581f (diff)
Clean up top-level source tree
Collect architecture independent data in 'share' subfolder. This also matches the install path
Diffstat (limited to 'osc')
-rw-r--r--osc/TTC2.preset10
-rw-r--r--osc/basic-touchosc.preset12
-rw-r--r--osc/wscript16
3 files changed, 0 insertions, 38 deletions
diff --git a/osc/TTC2.preset b/osc/TTC2.preset
deleted file mode 100644
index c431c68dd5..0000000000
--- a/osc/TTC2.preset
+++ /dev/null
@@ -1,10 +0,0 @@
-<?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>
diff --git a/osc/basic-touchosc.preset b/osc/basic-touchosc.preset
deleted file mode 100644
index 0c55953810..0000000000
--- a/osc/basic-touchosc.preset
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<OSCPreset>
- <Name value="Basic TouchOSC"/>
- <PortMode value="1"/>
- <Remote-Port value="8000"/>
- <Bank-Size value="0"/>
- <Send-Size value="0"/>
- <Plugin-Size value="0"/>
- <Strip-Types value="159"/>
- <Feedback value="4"/>
- <Gain-Mode value="1"/>
-</OSCPreset>
diff --git a/osc/wscript b/osc/wscript
deleted file mode 100644
index 64b173af5c..0000000000
--- a/osc/wscript
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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