mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 17:19:43 +02:00
39 lines
1.2 KiB
CMake
39 lines
1.2 KiB
CMake
#directory cmake-proxies/portmixer
|
|
set( TARGET portmixer )
|
|
set( TARGET_SOURCE ${LIB_SRC_DIRECTORY}${TARGET} )
|
|
project( ${TARGET} )
|
|
|
|
set( SOURCES
|
|
#${LIB_SRC_DIRECTORY}portmixer/px_tests/px_test.c
|
|
#${LIB_SRC_DIRECTORY}portmixer/src/px_example_api.c
|
|
#${LIB_SRC_DIRECTORY}portmixer/src/px_linux_alsa.c
|
|
#${LIB_SRC_DIRECTORY}portmixer/src/px_mac_coreaudio.c
|
|
${LIB_SRC_DIRECTORY}portmixer/src/px_mixer.c
|
|
#${LIB_SRC_DIRECTORY}portmixer/src/px_unix_oss.c
|
|
${LIB_SRC_DIRECTORY}portmixer/src/px_win_common.c
|
|
${LIB_SRC_DIRECTORY}portmixer/src/px_win_ds.c
|
|
${LIB_SRC_DIRECTORY}portmixer/src/px_win_endpoint.c
|
|
${LIB_SRC_DIRECTORY}portmixer/src/px_win_wasapi.c
|
|
${LIB_SRC_DIRECTORY}portmixer/src/px_win_wmme.c
|
|
)
|
|
# This defines the #define on both Windows and Linux.
|
|
add_definitions(
|
|
-D_LIB
|
|
)
|
|
add_library( ${TARGET} STATIC ${SOURCES})
|
|
|
|
#if(MSVC)
|
|
#FIX-ME What a horrible hacky place for a config file!
|
|
add_definitions(/FI"${top_dir}/win/Projects/${TARGET}/Debug/config.h")
|
|
#else()
|
|
# GCC or Clang
|
|
# add_definitions(-include ${top_dir}/win/Projects/${TARGET}/config.h)
|
|
#endif()
|
|
|
|
|
|
target_include_directories( ${TARGET} PRIVATE
|
|
${TARGET_SOURCE}/include
|
|
${LIB_SRC_DIRECTORY}/portaudio-v19/include
|
|
)
|
|
|
|
target_link_libraries( ${TARGET} ) |