2009-03-23 09:10:32 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
2010-07-24 17:39:17 +00:00
|
|
|
import os
|
2009-03-23 09:10:32 +00:00
|
|
|
|
2010-07-24 17:39:17 +00:00
|
|
|
name = os.sep + "Plugin_DSP_LLE"
|
2009-03-23 09:10:32 +00:00
|
|
|
|
|
|
|
files = [
|
2009-03-30 16:30:31 +00:00
|
|
|
"Config.cpp",
|
2009-06-21 09:35:31 +00:00
|
|
|
"DSPDebugInterface.cpp",
|
|
|
|
"DSPSymbols.cpp",
|
2009-03-23 09:10:32 +00:00
|
|
|
"Globals.cpp",
|
|
|
|
"main.cpp",
|
|
|
|
"Tools.cpp",
|
2010-01-13 04:43:18 +00:00
|
|
|
"DSPHost.cpp",
|
2009-03-23 09:10:32 +00:00
|
|
|
]
|
|
|
|
|
2009-04-30 08:14:46 +00:00
|
|
|
if env['HAVE_WX']:
|
2010-07-19 03:42:37 +00:00
|
|
|
files += [
|
|
|
|
"DSPConfigDlgLLE.cpp",
|
|
|
|
"Debugger/DSPDebugWindow.cpp",
|
|
|
|
"Debugger/DSPRegisterView.cpp",
|
2009-04-30 08:14:46 +00:00
|
|
|
]
|
|
|
|
|
2010-07-19 03:42:37 +00:00
|
|
|
libs = [ 'dspcore', 'audiocommon', 'common' ]
|
2010-06-10 14:18:21 +00:00
|
|
|
|
2009-08-01 18:31:25 +00:00
|
|
|
if env['HAVE_WX']:
|
2010-07-19 03:42:37 +00:00
|
|
|
libs += [ 'debugger_ui_util' ]
|
2010-06-10 14:18:21 +00:00
|
|
|
|
2010-07-20 04:19:25 +00:00
|
|
|
env.SharedLibrary(env['plugin_dir'] + name, files, LIBS = env['LIBS'] + libs)
|