mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-29 21:32:52 +00:00
c6d95c9087
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6382 8ced0084-cf51-0410-be5f-012b33b47a6e
27 lines
563 B
CMake
27 lines
563 B
CMake
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)
|
|
set(LIBS ${LIBS} debugger_ui_util)
|
|
endif(wxWidgets_FOUND)
|
|
|
|
add_library(Plugin_DSP_LLE SHARED ${SRCS})
|
|
target_link_libraries(Plugin_DSP_LLE ${LIBS})
|
|
install(TARGETS Plugin_DSP_LLE
|
|
LIBRARY DESTINATION ${plugindir}
|
|
RUNTIME DESTINATION ${plugindir})
|
|
|