summaryrefslogtreecommitdiff
path: root/gtk2_ardour/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-06-09 15:44:09 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-06-09 15:44:09 +0000
commit5b3916c62ec07168b8c554a87241917b06d54fb9 (patch)
treef4cacb95c11e25183558775db3ebb908303836e1 /gtk2_ardour/wscript
parent1a2a58fdd61efeff7ae5ebbb699526220bb47a6f (diff)
split style files apart to better maintain consistency (generates a useless error during program startup - thanks GTK); metronome icon for (moved) click button; move punch in/out buttons around
git-svn-id: svn://localhost/ardour2/branches/3.0@9697 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/wscript')
-rw-r--r--gtk2_ardour/wscript37
1 files changed, 34 insertions, 3 deletions
diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript
index 9f0262f736..d357d1e277 100644
--- a/gtk2_ardour/wscript
+++ b/gtk2_ardour/wscript
@@ -459,17 +459,46 @@ def build(bld):
light_rc_subst_dict['COLPREFIX'] = 'ARDOUR_LIGHT'
obj = bld.new_task_gen('subst')
- obj.source = 'ardour3_ui_dark.rc.in'
+ obj.source = [ 'ardour3_ui_dark.rc.in' ]
obj.target = 'ardour3_ui_dark.rc'
obj.dict = dark_rc_subst_dict
obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
obj = bld.new_task_gen('subst')
- obj.source = 'ardour3_ui_light.rc.in'
+ obj.source = [ 'ardour3_ui_light.rc.in' ]
obj.target = 'ardour3_ui_light.rc'
obj.dict = light_rc_subst_dict
obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
+ obj = bld.new_task_gen('subst')
+ obj.source = [ 'ardour3_styles.rc.in' ]
+ obj.target = 'ardour3_dark_styles.rc'
+ obj.dict = dark_rc_subst_dict
+ obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
+
+ obj = bld.new_task_gen('subst')
+ obj.source = [ 'ardour3_styles.rc.in' ]
+ obj.target = 'ardour3_light_styles.rc'
+ obj.dict = light_rc_subst_dict
+ obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
+
+ obj = bld.new_task_gen('subst')
+ obj.source = [ 'ardour3_fonts.rc.in' ]
+ obj.target = 'ardour3_dark_fonts.rc'
+ obj.dict = dark_rc_subst_dict
+ obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
+
+ obj = bld.new_task_gen('subst')
+ obj.source = [ 'ardour3_fonts.rc.in' ]
+ obj.target = 'ardour3_light_fonts.rc'
+ obj.dict = light_rc_subst_dict
+ obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
+
+ obj = bld.new_task_gen('copy')
+ obj.source = [ 'ardour3_widget_list.rc' ]
+ obj.target = 'ardour3_widgets.rc'
+ obj.install_path = os.path.join(bld.env['CONFIGDIR'], 'ardour3')
+
# Menus
menus_argv = []
if bld.env['GTKOSX']:
@@ -510,7 +539,9 @@ def build(bld):
# Default UI configuration
bld.install_files('${CONFIGDIR}/ardour3', 'ardour3_ui_default.conf')
-
+ # Generic widget style mappings
+ bld.install_files('${CONFIGDIR}/ardour3', 'ardour3_widgets.rc')
+
# Default export stuff
bld.install_files('${CONFIGDIR}/ardour3/export', 'export/*.format')