mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
cde1c5bd60
Fix some debugger issues. Still need to get sound window working, but the invalid id panic alert is fixed. Also, a ";" as a comment in an ini file is now only allowed at the beginning of a line. The debugger has settings strings with semicolons in them. That completely broke the debugger. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6989 8ced0084-cf51-0410-be5f-012b33b47a6e
40 lines
951 B
CMake
40 lines
951 B
CMake
set(SRCS Src/AudioCommon.cpp
|
|
Src/AudioCommonConfig.cpp
|
|
Src/Mixer.cpp
|
|
Src/WaveFile.cpp
|
|
Src/NullSoundStream.cpp)
|
|
|
|
set(LIBS "")
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
set(SRCS ${SRCS} Src/CoreAudioSoundStream.cpp)
|
|
else()
|
|
if(ALSA_FOUND)
|
|
set(SRCS ${SRCS} Src/AlsaSoundStream.cpp)
|
|
set(LIBS ${LIBS} ${ALSA_LIBRARIES})
|
|
endif(ALSA_FOUND)
|
|
|
|
if(AO_FOUND)
|
|
set(SRCS ${SRCS} Src/AOSoundStream.cpp)
|
|
set(LIBS ${LIBS} ${AO_LIBRARIES})
|
|
endif(AO_FOUND)
|
|
|
|
if(OPENAL_FOUND OR WIN32)
|
|
set(SRCS ${SRCS} Src/OpenALStream.cpp Src/aldlist.cpp)
|
|
set(LIBS ${LIBS} openal)
|
|
endif(OPENAL_FOUND OR WIN32)
|
|
|
|
if(PULSEAUDIO_FOUND)
|
|
set(SRCS ${SRCS} Src/PulseAudioStream.cpp)
|
|
set(LIBS ${LIBS} ${PULSEAUDIO_LIBRARIES})
|
|
endif(PULSEAUDIO_FOUND)
|
|
|
|
if(WIN32)
|
|
set(SRCS ${SRCS} Src/DSoundStream.cpp)
|
|
set(SRCS ${SRCS} Src/XAudio2Stream.cpp)
|
|
endif(WIN32)
|
|
endif()
|
|
|
|
add_library(audiocommon STATIC ${SRCS})
|
|
target_link_libraries(audiocommon ${LIBS})
|