root/trunk/libffado/support/dbus/SConscript

Revision 755, 2.1 kB (checked in by ppalmers, 15 years ago)

add a scons option to build static versions of the tools

Line 
1 #
2 # Copyright (C) 2007 Arnold Krille
3 # Copyright (C) 2007 Pieter Palmers
4 #
5 # This file is part of FFADO
6 # FFADO = Free Firewire (pro-)audio drivers for linux
7 #
8 # FFADO is based upon FreeBoB.
9 #
10 # This program is free software: you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation, either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 #
23
24 Import( 'env' )
25
26 env = env.Copy()
27
28 #
29 # For the debugging apps
30 #
31
32 env.AppendUnique( CPPPATH=["#/", "#/src", "#/external/dbus/include"] )
33 env.PrependUnique( LIBPATH=[env['build_base']+"src", env['build_base']+"external/dbus"] )
34 env.PrependUnique( LIBS=["ffado", "dbus-c++"] )
35
36 if not env.GetOption( "clean" ):
37     env.MergeFlags( env["DBUS1_FLAGS"] )
38     env.MergeFlags( env['LIBRAW1394_FLAGS'] )
39     env.MergeFlags( env['LIBXML26_FLAGS'] )
40
41 env.Xml2Cpp_Proxy('controlclient-glue.h', 'control-interface.xml')
42 env.Xml2Cpp_Adaptor('controlserver-glue.h', 'control-interface.xml')
43
44 static_env = env.Copy()
45
46 apps = {
47 }
48
49 installapps = []
50
51 apps = {
52     "ffado-dbus-server":"ffado-dbus-server.cpp controlserver.cpp",
53     "test-dbus" : "test-dbus.cpp controlclient.cpp",
54     "test-dbus-server" : "test-dbus-server.cpp controlserver.cpp",
55 }
56
57 installapps += [ "ffado-dbus-server" ]
58
59 for app in apps.keys():
60     env.Program( target=app, source = env.Split( apps[app] ) )
61     if app.find( "test" ) == -1:
62         env.Install( "$bindir", app )
63
64 # static versions
65 if static_env['BUILD_STATIC_TOOLS']:
66     static_env.Append(LIBS=File('#/src/libffado.a'))
67     for app in apps.keys():
68         static_app = app + "-static"
69         static_env.Program( target=static_app, source = static_env.Split( apps[app] ) )
Note: See TracBrowser for help on using the browser.