mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
a279b391cc
Also added an option to explicitly disable building with MPG framedumps. To use it add -DENCODE_FRAMEDUMPS=OFF to cmake on the command line. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6429 8ced0084-cf51-0410-be5f-012b33b47a6e
43 lines
1.0 KiB
CMake
43 lines
1.0 KiB
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})
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
|
add_definitions(-fPIC)
|
|
endif()
|