Changeset 1222
- Timestamp:
- 05/26/08 01:17:52 (13 years ago)
- Files:
-
- branches/libffado-2.0/support/mixer/SConscript (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/libffado-2.0/support/mixer/SConscript
r1216 r1222 30 30 e = env.Clone() 31 31 32 e['MIXER APPS'] = [ 'phase24', 'phase88',32 e['MIXERGUIS'] = [ 'phase24', 'phase88', 33 33 'saffire', 34 34 'saffireprolarge', 'saffireprosmall', … … 38 38 'global', 'dummy' 39 39 ] 40 e['MIXERAPPS'] = [ 'phase24', 'phase88', 41 'saffire', 42 'saffirepro', 43 'saffirele', 44 'af2', 'bcoaudio5', 'edirolfa66', 45 'mackie_generic', 'quatafire', 'motu', 46 'global', 'dummy' 47 ] 48 e['OTHERGUIS'] = ['ffado_regdialog'] 40 49 e['OTHERAPPS'] = ['ffado_regdialog'] 41 50 … … 46 55 e['pythondir'] = Template( os.path.join( e['sharedir'], 'python' ) ).safe_substitute( e ) 47 56 48 for m in e['MIXER APPS']:57 for m in e['MIXERGUIS']: 49 58 app = "mixer_" + m 50 59 if os.path.exists( app+".ui" ): 51 60 e.PyUIC( source=app+".ui", target=app+"ui.py" ) 52 61 e.Install( "$pythondir", app+"ui.py" ) 62 for m in e['MIXERAPPS']: 63 app = "mixer_" + m 53 64 e.Install( "$pythondir", app+".py" ) 54 65 55 for app in e['OTHER APPS']:66 for app in e['OTHERGUIS']: 56 67 if os.path.exists( app+".ui" ): 57 68 e.PyUIC( source=app+".ui", target=app+"ui.py" ) 58 69 e.Install( "$pythondir", app+"ui.py" ) 70 for app in e['OTHERAPPS']: 59 71 e.Install( "$pythondir", app+".py" ) 60 72