2024-05-18 18:17:16 +08:00
|
|
|
#
|
|
|
|
# Generated file, do not edit.
|
|
|
|
#
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_PLUGIN_LIST
|
2024-05-20 00:08:20 +08:00
|
|
|
file_selector_linux
|
2024-06-22 22:39:32 +08:00
|
|
|
flutter_acrylic
|
2024-05-18 22:23:36 +08:00
|
|
|
flutter_secure_storage_linux
|
2024-06-01 01:25:45 +08:00
|
|
|
flutter_webrtc
|
2024-06-02 00:42:36 +08:00
|
|
|
sentry_flutter
|
2024-05-19 00:56:32 +08:00
|
|
|
url_launcher_linux
|
2024-05-18 18:17:16 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
|
|
|
)
|
|
|
|
|
|
|
|
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)
|