mirror of
https://github.com/LMMS/lmms.git
synced 2026-05-19 12:16:16 -04:00
11 lines
318 B
CMake
11 lines
318 B
CMake
if(LMMS_HAVE_FLUIDSYNTH)
|
|
SET(CMAKE_AUTOUIC ON)
|
|
include(BuildPlugin)
|
|
build_plugin(sf2player
|
|
Sf2Player.cpp Sf2Player.h PatchesDialog.cpp PatchesDialog.h PatchesDialog.ui
|
|
MOCFILES Sf2Player.h PatchesDialog.h
|
|
EMBEDDED_RESOURCES *.png
|
|
)
|
|
target_link_libraries(sf2player fluidsynth SampleRate::samplerate)
|
|
endif()
|