dolphin/Source/Core/AudioCommon/CMakeLists.txt

41 lines
849 B
CMake
Raw Normal View History

2013-12-07 21:14:29 +01:00
set(SRCS AudioCommon.cpp
DPL2Decoder.cpp
Mixer.cpp
WaveFile.cpp
NullSoundStream.cpp)
set(LIBS "")
2013-02-26 20:49:00 +01:00
if(ANDROID)
2013-12-07 21:14:29 +01:00
set(SRCS ${SRCS} OpenSLESStream.cpp)
2013-02-26 20:49:00 +01:00
set(LIBS ${LIBS} OpenSLES)
endif(ANDROID)
2011-12-05 05:49:08 +01:00
if(ALSA_FOUND)
2013-12-07 21:14:29 +01:00
set(SRCS ${SRCS} AlsaSoundStream.cpp)
2011-12-05 05:49:08 +01:00
set(LIBS ${LIBS} ${ALSA_LIBRARIES})
endif(ALSA_FOUND)
if(AO_FOUND)
2013-12-07 21:14:29 +01:00
set(SRCS ${SRCS} AOSoundStream.cpp)
2011-12-05 05:49:08 +01:00
set(LIBS ${LIBS} ${AO_LIBRARIES})
endif(AO_FOUND)
if(OPENAL_FOUND)
2013-12-07 21:14:29 +01:00
set(SRCS ${SRCS} OpenALStream.cpp aldlist.cpp)
set(LIBS ${LIBS} ${OPENAL_LIBRARY} SoundTouch )
2011-12-05 05:49:08 +01:00
endif(OPENAL_FOUND)
if(PULSEAUDIO_FOUND)
2013-12-07 21:14:29 +01:00
set(SRCS ${SRCS} PulseAudioStream.cpp)
2011-12-05 05:49:08 +01:00
set(LIBS ${LIBS} ${PULSEAUDIO_LIBRARIES})
endif(PULSEAUDIO_FOUND)
if(WIN32)
2013-12-07 21:14:29 +01:00
set(SRCS ${SRCS} XAudio2Stream.cpp)
2015-01-03 13:17:57 +01:00
elseif(APPLE)
2013-12-07 21:14:29 +01:00
set(SRCS ${SRCS} CoreAudioSoundStream.cpp)
endif()
add_dolphin_library(audiocommon "${SRCS}" "${LIBS}")