2010-11-01 15:47:02 +00:00
|
|
|
set(SRCS
|
|
|
|
Src/Config.cpp
|
|
|
|
Src/DSPDebugInterface.cpp
|
|
|
|
Src/DSPHost.cpp
|
|
|
|
Src/DSPSymbols.cpp
|
|
|
|
Src/Globals.cpp
|
|
|
|
Src/main.cpp
|
|
|
|
Src/Tools.cpp)
|
|
|
|
|
|
|
|
set(LIBS dspcore audiocommon common)
|
|
|
|
|
|
|
|
if(wxWidgets_FOUND)
|
|
|
|
set(SRCS
|
|
|
|
${SRCS}
|
|
|
|
Src/DSPConfigDlgLLE.cpp
|
|
|
|
Src/Debugger/DSPDebugWindow.cpp
|
|
|
|
Src/Debugger/DSPRegisterView.cpp)
|
2010-11-18 23:27:27 +00:00
|
|
|
set(LIBS ${LIBS} debugger_ui_util ${wxWidgets_LIBRARIES})
|
2010-11-01 15:47:02 +00:00
|
|
|
endif(wxWidgets_FOUND)
|
|
|
|
|
2010-11-18 23:27:27 +00:00
|
|
|
add_library(Plugin_DSP_LLE MODULE ${SRCS})
|
2010-11-01 15:47:02 +00:00
|
|
|
target_link_libraries(Plugin_DSP_LLE ${LIBS})
|
2010-11-08 14:04:56 +00:00
|
|
|
install(TARGETS Plugin_DSP_LLE
|
2010-11-11 15:50:52 +00:00
|
|
|
LIBRARY DESTINATION ${plugindir}
|
|
|
|
RUNTIME DESTINATION ${plugindir})
|
2010-11-04 13:47:17 +00:00
|
|
|
|