diff --git a/backends/playback/fluidsynth/CMakeLists.txt b/backends/playback/fluidsynth/CMakeLists.txt index 21bead9..629c7a0 100644 --- a/backends/playback/fluidsynth/CMakeLists.txt +++ b/backends/playback/fluidsynth/CMakeLists.txt @@ -3,5 +3,7 @@ set(BACKEND_FLUIDSYNTH_INC ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DI add_playback_backend(fluidsynth_backend ${BACKEND_FLUIDSYNTH_SRC}) target_include_directories(fluidsynth_backend PRIVATE ${BACKEND_FLUIDSYNTH_INC}) find_package(OpenMP) -find_package(FluidSynth) -target_link_libraries(fluidsynth_backend PUBLIC OpenMP::OpenMP_CXX FluidSynth::libfluidsynth) +find_package(PkgConfig) +pkg_check_modules(fluidsynth fluidsynth IMPORTED_TARGET) + +target_link_libraries(fluidsynth_backend PUBLIC OpenMP::OpenMP_CXX PkgConfig::fluidsynth)