2006-04-04 20:21:43 -04:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
import os
|
2006-04-25 20:45:27 -04:00
|
|
|
import os.path
|
2006-04-04 20:21:43 -04:00
|
|
|
import glob
|
|
|
|
|
|
|
|
Import('env final_prefix install_prefix final_config_prefix libraries i18n')
|
|
|
|
|
|
|
|
tranzport = env.Copy()
|
|
|
|
|
|
|
|
#
|
|
|
|
# this defines the version number of libardour_tranzport
|
|
|
|
#
|
|
|
|
|
|
|
|
domain = 'ardour_tranzport'
|
|
|
|
|
|
|
|
tranzport.Append(DOMAIN = domain, MAJOR = 1, MINOR = 0, MICRO = 0)
|
|
|
|
tranzport.Append(CXXFLAGS = "-DPACKAGE=\\\"" + domain + "\\\"")
|
|
|
|
tranzport.Append(CXXFLAGS="-DLIBSIGC_DISABLE_DEPRECATED")
|
|
|
|
tranzport.Append(PACKAGE = domain)
|
|
|
|
tranzport.Append(POTFILE = domain + '.pot')
|
|
|
|
|
|
|
|
tranzport_files=Split("""
|
|
|
|
interface.cc
|
|
|
|
tranzport_control_protocol.cc
|
|
|
|
""")
|
|
|
|
|
|
|
|
tranzport.Append(CCFLAGS="-D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE")
|
|
|
|
tranzport.Append(CXXFLAGS="-DDATA_DIR=\\\""+final_prefix+"/share\\\"")
|
|
|
|
tranzport.Append(CXXFLAGS="-DCONFIG_DIR=\\\""+final_config_prefix+"\\\"")
|
|
|
|
tranzport.Append(CXXFLAGS="-DLOCALEDIR=\\\""+final_prefix+"/share/locale\\\"")
|
|
|
|
|
|
|
|
tranzport.Merge ([
|
2006-04-25 17:45:04 -04:00
|
|
|
libraries['ardour'],
|
2006-05-23 15:54:52 -04:00
|
|
|
libraries['ardour_cp'],
|
2006-04-25 17:45:04 -04:00
|
|
|
libraries['sigc2'],
|
2006-06-29 18:21:30 -04:00
|
|
|
libraries['pbd'],
|
2006-04-25 17:45:04 -04:00
|
|
|
libraries['midi++2'],
|
2006-05-23 15:54:52 -04:00
|
|
|
libraries['xml'],
|
2006-06-07 10:54:12 -04:00
|
|
|
libraries['usb'],
|
2006-06-07 23:58:29 -04:00
|
|
|
libraries['glib2'],
|
|
|
|
libraries['glibmm2']
|
2006-05-23 15:54:52 -04:00
|
|
|
])
|
2006-04-04 20:21:43 -04:00
|
|
|
|
|
|
|
libardour_tranzport = tranzport.SharedLibrary('ardour_tranzport', tranzport_files)
|
|
|
|
|
|
|
|
Default(libardour_tranzport)
|
|
|
|
|
|
|
|
if env['NLS']:
|
|
|
|
i18n (tranzport, tranzport_files, env)
|
|
|
|
|
2006-04-24 18:45:19 -04:00
|
|
|
env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2/surfaces'), libardour_tranzport))
|
|
|
|
|
2006-04-04 20:21:43 -04:00
|
|
|
env.Alias('tarball', env.Distribute (env['DISTTREE'],
|
2006-05-30 22:46:04 -04:00
|
|
|
[ 'SConscript' ] +
|
2006-04-04 20:21:43 -04:00
|
|
|
tranzport_files +
|
|
|
|
glob.glob('po/*.po') + glob.glob('*.h')))
|