root/branches/libffado-2.0/support/dbus/SConscript

Revision 1185, 2.1 kB (checked in by arnonym, 16 years ago)

env.Copy() -> env.Clone()

Makes scons 0.97 happy...

Line 
1 #
2 # Copyright (C) 2007-2008 Arnold Krille
3 # Copyright (C) 2007-2008 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 2 of the License, or
13 # (at your option) version 3 of the License.
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.Clone()
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     if not env['SERIALIZE_USE_EXPAT']:
39         env.MergeFlags( env['LIBXML26_FLAGS'] )
40     else:
41         env.PrependUnique( LIBS=["expat"] )
42
43 env.Xml2Cpp_Proxy('controlclient-glue.h', 'control-interface.xml')
44 env.Xml2Cpp_Adaptor('controlserver-glue.h', 'control-interface.xml')
45
46 static_env = env.Clone()
47
48 apps = {
49 }
50
51 installapps = []
52
53 apps = {
54     "ffado-dbus-server":"ffado-dbus-server.cpp controlserver.cpp",
55     "test-dbus" : "test-dbus.cpp controlclient.cpp",
56     "test-dbus-server" : "test-dbus-server.cpp controlserver.cpp",
57 }
58
59 installapps += [ "ffado-dbus-server" ]
60
61 for app in apps.keys():
62     env.Program( target=app, source = env.Split( apps[app] ) )
63     if app.find( "test" ) == -1:
64         env.Install( "$bindir", app )
65
66 # static versions
67 if static_env['BUILD_STATIC_TOOLS']:
68     static_env.Append(LIBS=File('#/src/libffado.a'))
69     for app in apps.keys():
70         static_app = app + "-static"
71         static_env.Program( target=static_app, source = static_env.Split( apps[app] ) )
Note: See TracBrowser for help on using the browser.