Revision 519, 378 bytes
(checked in by arnonym, 16 years ago)
|
Add the first version of scons-support to ffado.
Everything seems to build correctly. Installing and library-versioning is not implemented yet.
[Hopefully this gets into the right branch.]
|
Line | |
---|
1 |
#! /usr/bin/env python |
---|
2 |
|
---|
3 |
Import( 'env' ) |
---|
4 |
|
---|
5 |
env = env.Copy() |
---|
6 |
|
---|
7 |
env.AppendUnique( CPPPATH=["#/src"] ) |
---|
8 |
env.AppendUnique( LIBPATH=["#/src"] ) |
---|
9 |
env.AppendUnique( LIBS=["ffado"] ) |
---|
10 |
|
---|
11 |
#env.AppendUnique( CCFLAGS=['-DENABLE_BEBOB'] ) |
---|
12 |
|
---|
13 |
for app in env.Split( "teststreaming teststreaming2 teststreaming3 testmidistreaming1" ): |
---|
14 |
env.Program( target=app, source = [ app+".c", "debugtools.c" ] ) |
---|
15 |
|
---|
16 |
|
---|