2025-10-18 00:05:20 +02:00
|
|
|
#
|
|
|
|
|
# Generated file, do not edit.
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_PLUGIN_LIST
|
2025-11-19 09:23:39 +01:00
|
|
|
os_media_controls
|
2025-10-18 00:05:20 +02:00
|
|
|
screen_retriever_linux
|
2026-03-02 07:29:21 +01:00
|
|
|
sentry_flutter
|
2026-02-02 12:41:22 +01:00
|
|
|
universal_gamepad
|
2025-10-18 00:05:20 +02:00
|
|
|
url_launcher_linux
|
|
|
|
|
window_manager
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
2026-03-19 19:56:36 +01:00
|
|
|
jni
|
2025-10-18 00:05:20 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
set(PLUGIN_BUNDLED_LIBRARIES)
|
|
|
|
|
|
|
|
|
|
foreach(plugin ${FLUTTER_PLUGIN_LIST})
|
|
|
|
|
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
|
|
|
|
|
target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
|
|
|
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
|
|
|
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
|
|
|
|
|
endforeach(plugin)
|
|
|
|
|
|
|
|
|
|
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
|
|
|
|
|
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
|
|
|
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
|
|
|
|
|
endforeach(ffi_plugin)
|