From 52b4b464f9657860e07b224564245ce22ea03df8 Mon Sep 17 00:00:00 2001 From: Taybin Rutkin Date: Sun, 6 Dec 2009 14:21:46 +0000 Subject: Merged revisions 6292,6294-6295,6311,6314 via svnmerge from svn+ssh://ardoursvn@subversion.ardour.org/ardour2/branches/build_fixes ........ r6292 | trutkin | 2009-12-05 08:31:25 -0500 (Sat, 05 Dec 2009) | 1 line remove scons build files ........ r6294 | trutkin | 2009-12-05 09:11:17 -0500 (Sat, 05 Dec 2009) | 2 lines cairomm remove unnecessary vendor libraries as we now rely on the developer to install them ........ r6295 | trutkin | 2009-12-05 09:12:54 -0500 (Sat, 05 Dec 2009) | 2 lines soundtouch remove unnecessary vendor libraries as we now rely on the developer to install them ........ r6311 | trutkin | 2009-12-05 23:38:49 -0500 (Sat, 05 Dec 2009) | 2 lines glibmm2, gtkmm2, libgnomecanvasmm, sigc++2 remove unnecessary vendor libraries as we now rely on the developer to install them ........ r6314 | trutkin | 2009-12-06 09:15:49 -0500 (Sun, 06 Dec 2009) | 4 lines remove scons referencing from Makefile - TODO: should move cscope stuff to waf and get rid of the Makefile ........ git-svn-id: svn://localhost/ardour2/branches/3.0@6315 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/surfaces/wiimote/SConscript | 61 ---------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 libs/surfaces/wiimote/SConscript (limited to 'libs/surfaces/wiimote') diff --git a/libs/surfaces/wiimote/SConscript b/libs/surfaces/wiimote/SConscript deleted file mode 100644 index eee54f37e4..0000000000 --- a/libs/surfaces/wiimote/SConscript +++ /dev/null @@ -1,61 +0,0 @@ -# -*- python -*- - -import os -import os.path -import glob - -Import('env final_prefix install_prefix final_config_prefix libraries i18n') - -wiimote = env.Clone() - -# -# this defines the version number of libardour_wiimote -# - -domain = 'ardour_wiimote' - -wiimote.Append(DOMAIN = domain, MAJOR = 1, MINOR = 0, MICRO = 0) -wiimote.Append(CXXFLAGS = "-DPACKAGE=\\\"" + domain + "\\\"") -wiimote.Append(CXXFLAGS="-DLIBSIGC_DISABLE_DEPRECATED") -wiimote.Append(PACKAGE = domain) -wiimote.Append(POTFILE = domain + '.pot') - -wiimote_files=Split(""" -wiimote.cc -interface.cc -""") - -wiimote.Append(CCFLAGS="-D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE") -wiimote.Append(CXXFLAGS="-DDATA_DIR=\\\""+final_prefix+"/share\\\"") -wiimote.Append(CXXFLAGS="-DCONFIG_DIR=\\\""+final_config_prefix+"\\\"") -wiimote.Append(CXXFLAGS="-DLOCALEDIR=\\\""+final_prefix+"/share/locale\\\"") -wiimote.Append(LINKFLAGS="-lcwiid") -#wiimote.Append(CPPPATH = libraries['jack'].get('CPPPATH', [])) - -wiimote.Merge ([ - libraries['ardour'], - libraries['ardour_cp'], - libraries['evoral'], - libraries['sndfile'], - libraries['midi++2'], - libraries['pbd'], - libraries['sigc2'], - libraries['usb'], - libraries['xml'], - libraries['glib2'], - libraries['glibmm2'] - ]) - -libardour_wiimote = wiimote.SharedLibrary('ardour_wiimote', wiimote_files) - -if wiimote['WIIMOTE']: - Default(libardour_wiimote) - env.Alias('install', env.Install(os.path.join(install_prefix, env['LIBDIR'], 'ardour3', 'surfaces'), libardour_wiimote)) - -if env['NLS']: - i18n (wiimote, wiimote_files, env) - -env.Alias('tarball', env.Distribute (env['DISTTREE'], - [ 'SConscript' ] + - wiimote_files + - glob.glob('po/*.po') + glob.glob('*.h'))) -- cgit v1.2.3