2024-08-26 05:29:17 +00:00
|
|
|
#
|
|
|
|
# Generated file, do not edit.
|
|
|
|
#
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_PLUGIN_LIST
|
2024-08-28 17:45:33 +00:00
|
|
|
desktop_webview_window
|
2024-08-27 07:22:18 +00:00
|
|
|
flutter_secure_storage_linux
|
2024-08-26 13:13:53 +00:00
|
|
|
media_kit_libs_linux
|
2024-08-27 07:22:18 +00:00
|
|
|
screen_retriever
|
|
|
|
sqlite3_flutter_libs
|
|
|
|
window_manager
|
2024-08-26 05:29:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
2024-08-26 13:13:53 +00:00
|
|
|
media_kit_native_event_loop
|
2024-08-26 05:29:17 +00: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)
|