dolphin/Source/Plugins/Plugin_DSP_LLE/CMakeLists.txt
NeoBrainX 4782a8fc5a More CMake work:
- various fixes for using CMake on Windows
- support building external SDL, zlib, CLRun, wxWidgets
- support using precompiled GLew and WiiUse libs on Windows

For what it's worth, I'm not quite sure if I got all the wx files right...
Building with MSVC2008 still doesn't work yet, but is a lot closer now.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6361 8ced0084-cf51-0410-be5f-012b33b47a6e
2010-11-08 14:04:56 +00:00

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})