From 9c167087aa684525ef1022f9ef92a1a57d80d0f1 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 13 Mar 2011 16:23:35 +0000 Subject: add build stuff for export formats/presets git-svn-id: svn://localhost/ardour2/branches/3.0@9137 d708f5d6-7413-0410-9779-e7cbd77b26cf --- export/wscript | 19 +++++++++++++++++++ wscript | 1 + 2 files changed, 20 insertions(+) create mode 100644 export/wscript diff --git a/export/wscript b/export/wscript new file mode 100644 index 0000000000..2b81276b0c --- /dev/null +++ b/export/wscript @@ -0,0 +1,19 @@ +#!/usr/bin/python + +import os +import glob + +srcdir = '.' +blddir = 'build' + +def configure(conf): + pass + +def build(bld): + presets = glob.glob (os.path.join(bld.get_curdir(), '*.preset')) + formats = glob.glob (os.path.join(bld.get_curdir(), '*.format')) + bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'export'), + presets + formats) + +def set_options(opt): + pass diff --git a/wscript b/wscript index 5bc992f11d..d6e0330218 100644 --- a/wscript +++ b/wscript @@ -35,6 +35,7 @@ children = [ 'libs/gnomecanvas', 'gtk2_ardour', 'templates', + 'export', # this needs to be conditional at some point, since # we will not build it or use it on OS X 'tools/sanity_check' -- cgit v1.2.3