1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-04 23:27:36 +01:00
Files
audacity/cmake-proxies/portmixer/CMakeLists.txt
Vitaliy Kirsanov 5e2a426cb3 CMakeLists.txt for portmixer and portaudio
The support of ALSA, OSS and CoreAudio was added to portaudio. portmixer
was updated accordingly.
2019-04-11 22:35:21 +01:00

33 lines
1.4 KiB
CMake

#directory cmake-proxies/portmixer
set(TARGET portmixer)
set(TARGET_SOURCE ${LIB_SRC_DIRECTORY}${TARGET})
project(${TARGET})
include(CheckIncludeFiles)
get_target_property(PA_DEFINITIONS portaudio_static INTERFACE_COMPILE_DEFINITIONS)
add_library(${TARGET} STATIC
"${TARGET_SOURCE}/src/px_mixer.c"
"$<$<BOOL:${WIN32}>:${TARGET_SOURCE}/src/px_win_common.c>"
"$<$<BOOL:${WIN32}>:${TARGET_SOURCE}/src/px_win_ds.c>"
"$<$<BOOL:${WIN32}>:${TARGET_SOURCE}/src/px_win_endpoint.c>"
"$<$<BOOL:${WIN32}>:${TARGET_SOURCE}/src/px_win_wasapi.c>"
"$<$<BOOL:${WIN32}>:${TARGET_SOURCE}/src/px_win_wmme.c>"
"$<$<IN_LIST:PA_USE_ALSA=1,${PA_DEFINITIONS}>:${TARGET_SOURCE}/src/px_linux_alsa.c>"
"$<$<IN_LIST:PA_USE_OSS=1,${PA_DEFINITIONS}>:${TARGET_SOURCE}/src/px_unix_oss.c>"
"$<$<IN_LIST:PA_USE_COREAUDIO=1,${PA_DEFINITIONS}>:${TARGET_SOURCE}/src/px_mac_coreaudio.c>")
target_compile_definitions(${TARGET} PRIVATE
$<$<BOOL:${WIN32}>:PX_USE_WIN_DSOUND>
$<$<BOOL:${WIN32}>:PX_USE_WIN_MME>
$<$<BOOL:${WIN32}>:PX_USE_WIN_WASAPI>
$<$<IN_LIST:PA_USE_ALSA=1,${PA_DEFINITIONS}>:PX_USE_LINUX_ALSA>
$<$<IN_LIST:PA_USE_OSS=1,${PA_DEFINITIONS}>:PX_USE_UNIX_OSS>
$<$<IN_LIST:PA_USE_COREAUDIO=1,${PA_DEFINITIONS}>:PX_USE_MAC_COREAUDIO>)
target_include_directories(${TARGET} PUBLIC "${TARGET_SOURCE}/include")
target_link_libraries(${TARGET} PUBLIC portaudio_static)
set_target_properties(${TARGET} PROPERTIES OSX_ARCHITECTURES "")