generated_plugins.cmake 971 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # Generated file, do not edit.
  3. #
  4. list(APPEND FLUTTER_PLUGIN_LIST
  5. desktop_webview_window
  6. file_saver
  7. flutter_local_authentication
  8. flutter_secure_storage_linux
  9. gtk
  10. screen_retriever
  11. sentry_flutter
  12. sodium_libs
  13. sqlite3_flutter_libs
  14. tray_manager
  15. url_launcher_linux
  16. window_manager
  17. )
  18. list(APPEND FLUTTER_FFI_PLUGIN_LIST
  19. )
  20. set(PLUGIN_BUNDLED_LIBRARIES)
  21. foreach(plugin ${FLUTTER_PLUGIN_LIST})
  22. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
  23. target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
  24. list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
  25. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
  26. endforeach(plugin)
  27. foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
  28. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
  29. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
  30. endforeach(ffi_plugin)