root/trunk/libffado/tests/streaming/SConscript

Revision 642, 410 bytes (checked in by arnonym, 16 years ago)

fix cleaning

Line 
1 #! /usr/bin/env python
2
3 Import( 'env' )
4
5 env = env.Copy()
6
7 env.PrependUnique( CPPPATH=["#/src"] )
8 env.PrependUnique( LIBPATH=["#/src"] )
9 env.PrependUnique( LIBS=["ffado"] )
10
11 apps = "teststreaming teststreaming2 teststreaming3"
12 if env.GetOption('clean') or env['ALSA_SEQ_OUTPUT']:
13         apps += " testmidistreaming1"
14
15 for app in env.Split( apps ):
16         env.Program( target=app, source = [ app+".c", "debugtools.c" ] )
17
18
Note: See TracBrowser for help on using the browser.