2010-11-01 15:47:02 +00:00
|
|
|
set(SRCS
|
|
|
|
Src/DSPHandler.cpp
|
|
|
|
Src/MailHandler.cpp
|
|
|
|
Src/HLEMixer.cpp
|
|
|
|
Src/main.cpp
|
|
|
|
Src/Config.cpp
|
|
|
|
Src/UCodes/UCode_AX.cpp
|
|
|
|
Src/UCodes/UCode_AXWii.cpp
|
|
|
|
Src/UCodes/UCode_CARD.cpp
|
|
|
|
Src/UCodes/UCode_InitAudioSystem.cpp
|
|
|
|
Src/UCodes/UCode_ROM.cpp
|
|
|
|
Src/UCodes/UCodes.cpp
|
|
|
|
Src/UCodes/UCode_GBA.cpp
|
|
|
|
Src/UCodes/UCode_Zelda.cpp
|
|
|
|
Src/UCodes/UCode_Zelda_ADPCM.cpp
|
|
|
|
Src/UCodes/UCode_Zelda_Voice.cpp
|
|
|
|
Src/UCodes/UCode_Zelda_Synth.cpp)
|
|
|
|
|
|
|
|
if(wxWidgets_FOUND)
|
|
|
|
set(SRCS ${SRCS} Src/ConfigDlg.cpp)
|
|
|
|
endif(wxWidgets_FOUND)
|
|
|
|
|
2010-11-18 23:27:27 +00:00
|
|
|
add_library(Plugin_DSP_HLE MODULE ${SRCS})
|
2011-01-12 13:38:41 +00:00
|
|
|
target_link_libraries(Plugin_DSP_HLE audiocommon common ${wxWidgets_LIBRARIES})
|
2010-11-08 14:04:56 +00:00
|
|
|
install(TARGETS Plugin_DSP_HLE
|
2010-11-11 15:50:52 +00:00
|
|
|
LIBRARY DESTINATION ${plugindir}
|
|
|
|
RUNTIME DESTINATION ${plugindir})
|