generated_plugins.cmake 880 B

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