Some checks failed
Build / build-gentoo (push) Failing after 17s
Build / download-system-deps (push) Successful in 3m5s
Build / get-source-code (push) Successful in 9m6s
Build / build-deb (push) Failing after 5m15s
Build / build-appimage (push) Successful in 4m27s
Build / build-android (push) Failing after 2m52s
Build / build-windows (push) Failing after 7m11s
- Remove unused OpenMP from playback backend - Fix update_assets on macOS - Add support for Objective C++ on macOS - Add macOS-specific code into the Dear ImGui backend - Add macOS .app packaging - Add support for global menus, and include support for macOS global menu into the Dear ImGui backend
8 lines
464 B
CMake
8 lines
464 B
CMake
set(BACKEND_FLUIDSYNTH_SRC ${CMAKE_CURRENT_SOURCE_DIR}/fluidsynth_backend.cpp)
|
|
set(BACKEND_FLUIDSYNTH_INC ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
|
|
add_playback_backend(fluidsynth_backend ${BACKEND_FLUIDSYNTH_SRC})
|
|
target_include_directories(fluidsynth_backend PRIVATE ${BACKEND_FLUIDSYNTH_INC})
|
|
find_package(PkgConfig)
|
|
pkg_check_modules(fluidsynth fluidsynth IMPORTED_TARGET)
|
|
|
|
target_link_libraries(fluidsynth_backend PUBLIC PkgConfig::fluidsynth)
|