obs-studio/plugins/linux-jack/CMakeLists.txt
PatTheMav aae3a6a466 cmake: Fix diverging prefix padding for OBS status outputs
Status output related to OBS configuration is prefixed with the string
"OBS" and added padding for enabled and disabled features. This padding
was not aligned between platforms.

By moving the padding and prefix decoration into its own function,
both elements are controlled in a single place. CMake scripts were
changed to use this new function `obs_status` instead of using CMake's
`message` function directly.
2022-03-26 09:44:23 -04:00

22 lines
578 B
CMake

project(linux-jack)
option(ENABLE_JACK "Build OBS with JACK support" OFF)
if(NOT ENABLE_JACK)
obs_status(DISABLED "linux-jack")
return()
endif()
find_package(Jack REQUIRED)
add_library(linux-jack MODULE)
add_library(OBS::jack ALIAS linux-jack)
target_sources(linux-jack PRIVATE linux-jack.c jack-wrapper.c jack-input.c)
target_link_libraries(linux-jack PRIVATE OBS::libobs Jack::Jack)
set_target_properties(linux-jack PROPERTIES FOLDER "plugins" PROJECT_LABEL
"JACK Audio")
setup_plugin_target(linux-jack)