2017-03-22 23:09:04 +00:00
|
|
|
# TODO
|
|
|
|
# - backend selection via command line, rather than simply detecting headers.
|
|
|
|
|
2022-06-17 21:24:22 +00:00
|
|
|
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
|
2017-03-22 23:09:04 +00:00
|
|
|
project(cubeb
|
|
|
|
VERSION 0.0.0)
|
|
|
|
|
|
|
|
option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
|
2022-06-17 21:24:22 +00:00
|
|
|
option(BUILD_RUST_LIBS "Build rust backends" OFF)
|
|
|
|
option(BUNDLE_SPEEX "Bundle the speex library" OFF)
|
|
|
|
option(LAZY_LOAD_LIBS "Lazily load shared libraries" ON)
|
|
|
|
option(USE_SANITIZERS "Use sanitizers" ON)
|
2017-03-22 23:09:04 +00:00
|
|
|
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
|
|
|
|
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
|
|
|
|
endif()
|
|
|
|
|
2022-05-21 01:31:41 +00:00
|
|
|
if (NOT MSVC)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
2023-11-22 17:11:21 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2022-05-21 01:31:41 +00:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
2023-11-22 17:11:21 +00:00
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
2022-05-21 01:31:41 +00:00
|
|
|
endif()
|
2017-03-22 23:09:04 +00:00
|
|
|
|
2022-06-17 21:24:22 +00:00
|
|
|
if(USE_SANITIZERS)
|
2017-03-22 23:09:04 +00:00
|
|
|
if(NOT COMMAND add_sanitizers)
|
2022-06-17 21:24:22 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cubeb/cmake/sanitizers-cmake/cmake")
|
|
|
|
find_package(Sanitizers)
|
|
|
|
if(NOT COMMAND add_sanitizers)
|
|
|
|
message(FATAL_ERROR "Could not find sanitizers-cmake: run\n\tgit submodule update --init --recursive\nin base git checkout")
|
|
|
|
endif()
|
2017-03-22 23:09:04 +00:00
|
|
|
endif()
|
2022-06-17 21:24:22 +00:00
|
|
|
else()
|
|
|
|
macro(add_sanitizers UNUSED)
|
|
|
|
endmacro()
|
2017-03-22 23:09:04 +00:00
|
|
|
endif()
|
|
|
|
|
2022-06-17 21:24:22 +00:00
|
|
|
if (BUILD_RUST_LIBS)
|
|
|
|
if(EXISTS "${PROJECT_SOURCE_DIR}/cubeb/src/cubeb-pulse-rs")
|
|
|
|
set(USE_PULSE_RUST 1)
|
|
|
|
endif()
|
|
|
|
if(EXISTS "${PROJECT_SOURCE_DIR}/cubeb/src/cubeb-coreaudio-rs")
|
|
|
|
set(USE_AUDIOUNIT_RUST 1)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# On OS/2, visibility attribute is not supported.
|
|
|
|
if(NOT OS2)
|
|
|
|
set(CMAKE_C_VISIBILITY_PRESET hidden)
|
|
|
|
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
|
|
|
|
set(CMAKE_VISIBILITY_INLINES_HIDDEN 1)
|
|
|
|
endif()
|
2017-03-22 23:09:04 +00:00
|
|
|
|
|
|
|
set(CMAKE_CXX_WARNING_LEVEL 4)
|
|
|
|
if(NOT MSVC)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wno-unused-parameter")
|
2022-06-17 21:24:22 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-unused-parameter -fno-exceptions -fno-rtti")
|
|
|
|
else()
|
2023-11-22 17:11:21 +00:00
|
|
|
#string(REPLACE "/GR" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") # Disable RTTI
|
|
|
|
#string(REPLACE "/EHsc" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") # Disable Exceptions
|
2017-03-22 23:09:04 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(cubeb
|
2022-06-17 21:24:22 +00:00
|
|
|
cubeb/src/cubeb.c
|
|
|
|
cubeb/src/cubeb_mixer.cpp
|
|
|
|
cubeb/src/cubeb_resampler.cpp
|
|
|
|
cubeb/src/cubeb_log.cpp
|
|
|
|
cubeb/src/cubeb_strings.c
|
|
|
|
cubeb/src/cubeb_utils.cpp
|
|
|
|
)
|
2024-03-19 06:08:54 +00:00
|
|
|
dolphin_disable_warnings(cubeb)
|
2017-10-21 21:13:53 +00:00
|
|
|
target_include_directories(cubeb
|
2022-06-17 21:24:22 +00:00
|
|
|
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/cubeb/include> $<INSTALL_INTERFACE:include>
|
|
|
|
)
|
|
|
|
set_target_properties(cubeb PROPERTIES
|
|
|
|
VERSION ${cubeb_VERSION}
|
|
|
|
SOVERSION ${cubeb_VERSION_MAJOR}
|
2017-10-21 21:13:53 +00:00
|
|
|
)
|
2017-03-22 23:09:04 +00:00
|
|
|
|
|
|
|
add_sanitizers(cubeb)
|
|
|
|
|
|
|
|
include(GenerateExportHeader)
|
|
|
|
generate_export_header(cubeb EXPORT_FILE_NAME ${CMAKE_BINARY_DIR}/exports/cubeb_export.h)
|
2017-10-21 21:13:53 +00:00
|
|
|
target_include_directories(cubeb
|
|
|
|
PUBLIC $<BUILD_INTERFACE:${CMAKE_BINARY_DIR}/exports>
|
|
|
|
)
|
|
|
|
|
2022-06-17 21:24:22 +00:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
|
|
|
install(DIRECTORY ${CMAKE_SOURCE_DIR}/cubeb/include/${PROJECT_NAME} TYPE INCLUDE)
|
|
|
|
install(DIRECTORY ${CMAKE_BINARY_DIR}/exports/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME})
|
2017-10-21 21:13:53 +00:00
|
|
|
|
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
write_basic_package_version_file(
|
|
|
|
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake"
|
|
|
|
COMPATIBILITY SameMajorVersion
|
|
|
|
)
|
|
|
|
|
|
|
|
configure_package_config_file(
|
2022-06-17 21:24:22 +00:00
|
|
|
"cubeb/Config.cmake.in"
|
2017-10-21 21:13:53 +00:00
|
|
|
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}Config.cmake"
|
2022-06-17 21:24:22 +00:00
|
|
|
INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
|
2017-10-21 21:13:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES "${PROJECT_BINARY_DIR}/${PROJECT_NAME}Config.cmake" "${PROJECT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake"
|
2022-06-17 21:24:22 +00:00
|
|
|
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
|
2017-10-21 21:13:53 +00:00
|
|
|
)
|
2022-06-17 21:24:22 +00:00
|
|
|
|
|
|
|
install(TARGETS cubeb EXPORT "${PROJECT_NAME}Targets")
|
2017-10-21 21:13:53 +00:00
|
|
|
install(
|
|
|
|
EXPORT "${PROJECT_NAME}Targets"
|
|
|
|
NAMESPACE "${PROJECT_NAME}::"
|
2022-06-17 21:24:22 +00:00
|
|
|
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
|
2017-10-21 21:13:53 +00:00
|
|
|
)
|
2017-03-22 23:09:04 +00:00
|
|
|
|
2022-06-17 21:24:22 +00:00
|
|
|
if(NOT BUNDLE_SPEEX)
|
|
|
|
find_package(PkgConfig)
|
|
|
|
if(PKG_CONFIG_FOUND)
|
|
|
|
pkg_check_modules(speexdsp IMPORTED_TARGET speexdsp)
|
|
|
|
if(speexdsp_FOUND)
|
|
|
|
add_library(speex ALIAS PkgConfig::speexdsp)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT TARGET speex)
|
2022-11-26 04:08:27 +00:00
|
|
|
add_library(speex OBJECT cubeb/subprojects/speex/resample.c)
|
2024-03-19 06:08:54 +00:00
|
|
|
dolphin_disable_warnings(speex)
|
2022-06-17 21:24:22 +00:00
|
|
|
set_target_properties(speex PROPERTIES POSITION_INDEPENDENT_CODE TRUE)
|
|
|
|
target_include_directories(speex INTERFACE cubeb/subprojects)
|
|
|
|
target_compile_definitions(speex PUBLIC
|
|
|
|
OUTSIDE_SPEEX
|
|
|
|
FLOATING_POINT
|
|
|
|
EXPORT=
|
|
|
|
RANDOM_PREFIX=speex
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# $<BUILD_INTERFACE:> required because of https://gitlab.kitware.com/cmake/cmake/-/issues/15415
|
|
|
|
target_link_libraries(cubeb PRIVATE $<BUILD_INTERFACE:speex>)
|
2017-03-22 23:09:04 +00:00
|
|
|
|
|
|
|
include(CheckIncludeFiles)
|
|
|
|
|
2022-06-17 21:24:22 +00:00
|
|
|
# Threads needed by cubeb_log, _pulse, _alsa, _jack, _sndio, _oss and _sun
|
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
|
|
find_package(Threads)
|
|
|
|
target_link_libraries(cubeb PRIVATE Threads::Threads)
|
|
|
|
|
|
|
|
if(LAZY_LOAD_LIBS)
|
|
|
|
check_include_files(pulse/pulseaudio.h USE_PULSE)
|
|
|
|
check_include_files(alsa/asoundlib.h USE_ALSA)
|
|
|
|
check_include_files(jack/jack.h USE_JACK)
|
|
|
|
check_include_files(sndio.h USE_SNDIO)
|
|
|
|
#check_include_files(aaudio/AAudio.h USE_AAUDIO)
|
|
|
|
set(USE_AAUDIO OFF) # too new for the Android versions we're targetting
|
|
|
|
|
|
|
|
if(USE_PULSE OR USE_ALSA OR USE_JACK OR USE_SNDIO OR USE_AAUDIO)
|
|
|
|
target_link_libraries(cubeb PRIVATE ${CMAKE_DL_LIBS})
|
2023-11-22 17:11:21 +00:00
|
|
|
|
|
|
|
if(ANDROID)
|
|
|
|
target_compile_definitions(cubeb PRIVATE __ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__)
|
|
|
|
endif()
|
2022-06-17 21:24:22 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
else()
|
|
|
|
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
|
|
|
|
pkg_check_modules(libpulse IMPORTED_TARGET libpulse)
|
|
|
|
if(libpulse_FOUND)
|
|
|
|
set(USE_PULSE ON)
|
|
|
|
target_compile_definitions(cubeb PRIVATE DISABLE_LIBPULSE_DLOPEN)
|
|
|
|
target_link_libraries(cubeb PRIVATE PkgConfig::libpulse)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
pkg_check_modules(alsa IMPORTED_TARGET alsa)
|
|
|
|
if(alsa_FOUND)
|
|
|
|
set(USE_ALSA ON)
|
|
|
|
target_compile_definitions(cubeb PRIVATE DISABLE_LIBASOUND_DLOPEN)
|
|
|
|
target_link_libraries(cubeb PRIVATE PkgConfig::alsa)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
pkg_check_modules(jack IMPORTED_TARGET jack)
|
|
|
|
if(jack_FOUND)
|
|
|
|
set(USE_JACK ON)
|
|
|
|
target_compile_definitions(cubeb PRIVATE DISABLE_LIBJACK_DLOPEN)
|
|
|
|
target_link_libraries(cubeb PRIVATE PkgConfig::jack)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
check_include_files(sndio.h USE_SNDIO)
|
|
|
|
if(USE_SNDIO)
|
|
|
|
target_compile_definitions(cubeb PRIVATE DISABLE_LIBSNDIO_DLOPEN)
|
|
|
|
target_link_libraries(cubeb PRIVATE sndio)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
#check_include_files(aaudio/AAudio.h USE_AAUDIO)
|
|
|
|
set(USE_AAUDIO OFF) # too new for the Android versions we're targetting
|
|
|
|
if(USE_AAUDIO)
|
|
|
|
target_compile_definitions(cubeb PRIVATE DISABLE_LIBAAUDIO_DLOPEN)
|
|
|
|
target_link_libraries(cubeb PRIVATE aaudio)
|
|
|
|
endif()
|
2017-03-22 23:09:04 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_PULSE)
|
2022-06-17 21:24:22 +00:00
|
|
|
target_sources(cubeb PRIVATE cubeb/src/cubeb_pulse.c)
|
2017-03-22 23:09:04 +00:00
|
|
|
target_compile_definitions(cubeb PRIVATE USE_PULSE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_ALSA)
|
2022-06-17 21:24:22 +00:00
|
|
|
target_sources(cubeb PRIVATE cubeb/src/cubeb_alsa.c)
|
2017-03-22 23:09:04 +00:00
|
|
|
target_compile_definitions(cubeb PRIVATE USE_ALSA)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_JACK)
|
2022-06-17 21:24:22 +00:00
|
|
|
target_sources(cubeb PRIVATE cubeb/src/cubeb_jack.cpp)
|
2017-03-22 23:09:04 +00:00
|
|
|
target_compile_definitions(cubeb PRIVATE USE_JACK)
|
2022-06-17 21:24:22 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_SNDIO)
|
|
|
|
target_sources(cubeb PRIVATE cubeb/src/cubeb_sndio.c)
|
|
|
|
target_compile_definitions(cubeb PRIVATE USE_SNDIO)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_AAUDIO)
|
|
|
|
target_sources(cubeb PRIVATE cubeb/src/cubeb_aaudio.cpp)
|
|
|
|
target_compile_definitions(cubeb PRIVATE USE_AAUDIO)
|
|
|
|
|
|
|
|
# set this definition to enable low latency mode. Possibly bad for battery
|
|
|
|
target_compile_definitions(cubeb PRIVATE CUBEB_AAUDIO_LOW_LATENCY)
|
|
|
|
|
|
|
|
# set this definition to enable power saving mode. Possibly resulting
|
|
|
|
# in high latency
|
|
|
|
# target_compile_definitions(cubeb PRIVATE CUBEB_AAUDIO_LOW_POWER_SAVING)
|
|
|
|
|
|
|
|
# set this mode to make the backend use an exclusive stream.
|
|
|
|
# will decrease latency.
|
|
|
|
# target_compile_definitions(cubeb PRIVATE CUBEB_AAUDIO_EXCLUSIVE_STREAM)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
check_include_files(AudioUnit/AudioUnit.h USE_AUDIOUNIT)
|
|
|
|
if(USE_AUDIOUNIT)
|
|
|
|
target_sources(cubeb PRIVATE
|
|
|
|
cubeb/src/cubeb_audiounit.cpp
|
|
|
|
cubeb/src/cubeb_osx_run_loop.cpp)
|
|
|
|
target_compile_definitions(cubeb PRIVATE USE_AUDIOUNIT)
|
|
|
|
target_link_libraries(cubeb PRIVATE "-framework AudioUnit" "-framework CoreAudio" "-framework CoreServices")
|
2017-03-22 23:09:04 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
check_include_files(audioclient.h USE_WASAPI)
|
|
|
|
if(USE_WASAPI)
|
|
|
|
target_sources(cubeb PRIVATE
|
2022-06-17 21:24:22 +00:00
|
|
|
cubeb/src/cubeb_wasapi.cpp)
|
2017-03-22 23:09:04 +00:00
|
|
|
target_compile_definitions(cubeb PRIVATE USE_WASAPI)
|
2022-06-17 21:24:22 +00:00
|
|
|
target_link_libraries(cubeb PRIVATE avrt ole32 ksuser)
|
2017-03-22 23:09:04 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
check_include_files("windows.h;mmsystem.h" USE_WINMM)
|
|
|
|
if(USE_WINMM)
|
|
|
|
target_sources(cubeb PRIVATE
|
2022-06-17 21:24:22 +00:00
|
|
|
cubeb/src/cubeb_winmm.c)
|
2017-03-22 23:09:04 +00:00
|
|
|
target_compile_definitions(cubeb PRIVATE USE_WINMM)
|
|
|
|
target_link_libraries(cubeb PRIVATE winmm)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
check_include_files(SLES/OpenSLES.h USE_OPENSL)
|
|
|
|
if(USE_OPENSL)
|
|
|
|
target_sources(cubeb PRIVATE
|
2023-11-22 17:11:21 +00:00
|
|
|
cubeb/src/cubeb_opensl.cpp
|
2022-06-17 21:24:22 +00:00
|
|
|
cubeb/src/cubeb-jni.cpp)
|
2017-03-22 23:09:04 +00:00
|
|
|
target_compile_definitions(cubeb PRIVATE USE_OPENSL)
|
|
|
|
target_link_libraries(cubeb PRIVATE OpenSLES)
|
|
|
|
endif()
|
|
|
|
|
2022-06-17 21:24:22 +00:00
|
|
|
check_include_files(sys/soundcard.h HAVE_SYS_SOUNDCARD_H)
|
|
|
|
if(HAVE_SYS_SOUNDCARD_H)
|
|
|
|
try_compile(USE_OSS "${PROJECT_BINARY_DIR}/compile_tests"
|
|
|
|
${PROJECT_SOURCE_DIR}/cubeb/cmake/compile_tests/oss_is_v4.c)
|
|
|
|
if(USE_OSS)
|
2022-11-26 04:08:27 +00:00
|
|
|
# strlcpy is not available on BSD systems that use glibc,
|
|
|
|
# like Debian kfreebsd, so try using libbsd if available
|
|
|
|
include(CheckSymbolExists)
|
|
|
|
check_symbol_exists(strlcpy string.h HAVE_STRLCPY)
|
|
|
|
if(NOT HAVE_STRLCPY)
|
|
|
|
pkg_check_modules(libbsd-overlay IMPORTED_TARGET libbsd-overlay)
|
|
|
|
if(libbsd-overlay_FOUND)
|
|
|
|
target_link_libraries(cubeb PRIVATE PkgConfig::libbsd-overlay)
|
|
|
|
set(HAVE_STRLCPY true)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if (HAVE_STRLCPY)
|
|
|
|
target_sources(cubeb PRIVATE
|
|
|
|
cubeb/src/cubeb_oss.c)
|
|
|
|
target_compile_definitions(cubeb PRIVATE USE_OSS)
|
|
|
|
endif()
|
2022-06-17 21:24:22 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2017-03-22 23:09:04 +00:00
|
|
|
check_include_files(android/log.h USE_AUDIOTRACK)
|
|
|
|
if(USE_AUDIOTRACK)
|
|
|
|
target_sources(cubeb PRIVATE
|
2022-06-17 21:24:22 +00:00
|
|
|
cubeb/src/cubeb_audiotrack.c)
|
2017-03-22 23:09:04 +00:00
|
|
|
target_compile_definitions(cubeb PRIVATE USE_AUDIOTRACK)
|
|
|
|
target_link_libraries(cubeb PRIVATE log)
|
|
|
|
endif()
|
|
|
|
|
2022-06-17 21:24:22 +00:00
|
|
|
check_include_files(sys/audioio.h USE_SUN)
|
|
|
|
if(USE_SUN)
|
2017-03-22 23:09:04 +00:00
|
|
|
target_sources(cubeb PRIVATE
|
2022-06-17 21:24:22 +00:00
|
|
|
cubeb/src/cubeb_sun.c)
|
|
|
|
target_compile_definitions(cubeb PRIVATE USE_SUN)
|
2017-03-22 23:09:04 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
check_include_files(kai.h USE_KAI)
|
|
|
|
if(USE_KAI)
|
|
|
|
target_sources(cubeb PRIVATE
|
2022-06-17 21:24:22 +00:00
|
|
|
cubeb/src/cubeb_kai.c)
|
2017-03-22 23:09:04 +00:00
|
|
|
target_compile_definitions(cubeb PRIVATE USE_KAI)
|
|
|
|
target_link_libraries(cubeb PRIVATE kai)
|
|
|
|
endif()
|
2022-06-17 21:24:22 +00:00
|
|
|
|
|
|
|
if(USE_PULSE AND USE_PULSE_RUST)
|
|
|
|
include(ExternalProject)
|
|
|
|
set_directory_properties(PROPERTIES EP_PREFIX ${CMAKE_BINARY_DIR}/rust)
|
|
|
|
ExternalProject_Add(
|
|
|
|
cubeb_pulse_rs
|
|
|
|
DOWNLOAD_COMMAND ""
|
|
|
|
CONFIGURE_COMMAND ""
|
|
|
|
BUILD_COMMAND cargo build COMMAND cargo build --release
|
|
|
|
BUILD_ALWAYS ON
|
|
|
|
BINARY_DIR "${PROJECT_SOURCE_DIR}/cubeb/src/cubeb-pulse-rs"
|
|
|
|
INSTALL_COMMAND ""
|
|
|
|
LOG_BUILD ON)
|
|
|
|
add_dependencies(cubeb cubeb_pulse_rs)
|
|
|
|
target_compile_definitions(cubeb PRIVATE USE_PULSE_RUST)
|
|
|
|
target_link_libraries(cubeb PRIVATE
|
|
|
|
debug "${PROJECT_SOURCE_DIR}/cubeb/src/cubeb-pulse-rs/target/debug/libcubeb_pulse.a"
|
|
|
|
optimized "${PROJECT_SOURCE_DIR}/cubeb/src/cubeb-pulse-rs/target/release/libcubeb_pulse.a" pulse)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_AUDIOUNIT AND USE_AUDIOUNIT_RUST)
|
|
|
|
include(ExternalProject)
|
|
|
|
set_directory_properties(PROPERTIES EP_PREFIX ${CMAKE_BINARY_DIR}/rust)
|
|
|
|
ExternalProject_Add(
|
|
|
|
cubeb_coreaudio_rs
|
|
|
|
DOWNLOAD_COMMAND ""
|
|
|
|
CONFIGURE_COMMAND ""
|
|
|
|
BUILD_COMMAND cargo build COMMAND cargo build --release
|
|
|
|
BUILD_ALWAYS ON
|
|
|
|
BINARY_DIR "${PROJECT_SOURCE_DIR}/cubeb/src/cubeb-coreaudio-rs"
|
|
|
|
INSTALL_COMMAND ""
|
|
|
|
LOG_BUILD ON)
|
|
|
|
add_dependencies(cubeb cubeb_coreaudio_rs)
|
|
|
|
target_compile_definitions(cubeb PRIVATE USE_AUDIOUNIT_RUST)
|
|
|
|
target_link_libraries(cubeb PRIVATE
|
|
|
|
debug "${PROJECT_SOURCE_DIR}/cubeb/src/cubeb-coreaudio-rs/target/debug/libcubeb_coreaudio.a"
|
|
|
|
optimized "${PROJECT_SOURCE_DIR}/cubeb/src/cubeb-coreaudio-rs/target/release/libcubeb_coreaudio.a")
|
|
|
|
endif()
|
2023-04-16 05:57:34 +00:00
|
|
|
add_library(cubeb::cubeb ALIAS cubeb)
|