A Flutter based music player for Jellyfin
1#
2# Generated file, do not edit.
3#
4
5list(APPEND FLUTTER_PLUGIN_LIST
6)
7
8list(APPEND FLUTTER_FFI_PLUGIN_LIST
9)
10
11set(PLUGIN_BUNDLED_LIBRARIES)
12
13foreach(plugin ${FLUTTER_PLUGIN_LIST})
14 add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
15 target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
16 list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
17 list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
18endforeach(plugin)
19
20foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
21 add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
22 list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
23endforeach(ffi_plugin)