Tim Mayberry
7df20e1166
* Remove debug output preventing compilation on x86_64. * Build shared libraries for all libs/* when DEVBUILD=1 to fix linking for x86_64/non-x86. * Simplify/consolidate the dev scripts a bit. * Export ARDOUR_COLORS variable in dev scripts. * Remove G_DISABLE_DEPRECATED from glibmm CXXFLAGS to allow compilation with newer versions of glib. * Build soundtouch with SYSLIBS=1, hopefully we can link to system soundtouch soon. git-svn-id: svn://localhost/trunk/ardour2@344 d708f5d6-7413-0410-9779-e7cbd77b26cf
79 lines
1.8 KiB
Python
79 lines
1.8 KiB
Python
# -*- python -*-
|
|
|
|
import os
|
|
import os.path
|
|
import glob
|
|
|
|
Import('env final_prefix install_prefix libraries i18n')
|
|
|
|
gtkmm2ext = env.Copy()
|
|
gtkmm2ext.Merge ([
|
|
libraries['sigc2'],
|
|
libraries['pbd3'],
|
|
libraries['midi++2'],
|
|
libraries['gtk2'],
|
|
libraries['glibmm2'],
|
|
libraries['pangomm'],
|
|
libraries['atkmm'],
|
|
libraries['gdkmm2'],
|
|
libraries['gtkmm2']
|
|
])
|
|
|
|
#
|
|
# this defines the version number of libgtkmm2ext
|
|
#
|
|
|
|
domain = 'libgtkmm2ext'
|
|
|
|
gtkmm2ext.Append(DOMAIN=domain,MAJOR=0,MINOR=8,MICRO=2)
|
|
gtkmm2ext.Append(CXXFLAGS="-DPACKAGE=\\\"" + domain + "\\\"")
|
|
gtkmm2ext.Append(CXXFLAGS="-DLIBSIGC_DISABLE_DEPRECATED")
|
|
gtkmm2ext.Append(PACKAGE=domain)
|
|
gtkmm2ext.Append(POTFILE=domain + '.pot')
|
|
|
|
gtkmm2ext_files = Split("""
|
|
auto_spin.cc
|
|
barcontroller.cc
|
|
bindable_button.cc
|
|
choice.cc
|
|
click_box.cc
|
|
controller.cc
|
|
dndtreeview.cc
|
|
fastmeter.cc
|
|
gtk_ui.cc
|
|
hexentry.cc
|
|
idle_adjustment.cc
|
|
pix.cc
|
|
pixscroller.cc
|
|
popup.cc
|
|
prompter.cc
|
|
selector.cc
|
|
slider_controller.cc
|
|
stateful_button.cc
|
|
tearoff.cc
|
|
textviewer.cc
|
|
utils.cc
|
|
version.cc
|
|
""")
|
|
|
|
gtkmm2ext.VersionBuild(['version.cc','gtkmm2ext/version.h'], 'SConscript')
|
|
|
|
gtkmm2ext.Append(CCFLAGS="-D_REENTRANT")
|
|
gtkmm2ext.Append(CCFLAGS="-DLOCALEDIR=\\\""+final_prefix+"/share/locale\\\"")
|
|
|
|
if env['DEVBUILD']:
|
|
libgtkmm2ext = gtkmm2ext.SharedLibrary('gtkmm2ext', gtkmm2ext_files)
|
|
else:
|
|
libgtkmm2ext = gtkmm2ext.StaticLibrary('gtkmm2ext', gtkmm2ext_files)
|
|
|
|
Default(libgtkmm2ext)
|
|
|
|
if env['NLS']:
|
|
i18n (gtkmm2ext, gtkmm2ext_files, env)
|
|
|
|
env.Alias('tarball', env.Distribute (env['DISTTREE'],
|
|
[ 'SConscript', 'i18n.h', 'gettext.h'] +
|
|
gtkmm2ext_files +
|
|
glob.glob('po/*.po') +
|
|
glob.glob('gtkmm2ext/*.h')))
|