generated_plugins.cmake 981 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Generated file, do not edit.
  3. #
  4. list(APPEND FLUTTER_PLUGIN_LIST
  5. connectivity_plus_windows
  6. file_selector_windows
  7. flutter_secure_storage_windows
  8. permission_handler_windows
  9. protocol_handler
  10. proxy_manager
  11. screen_retriever
  12. tray_manager
  13. url_launcher_windows
  14. window_manager
  15. wl_base_help
  16. )
  17. list(APPEND FLUTTER_FFI_PLUGIN_LIST
  18. )
  19. set(PLUGIN_BUNDLED_LIBRARIES)
  20. foreach(plugin ${FLUTTER_PLUGIN_LIST})
  21. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin})
  22. target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
  23. list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
  24. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
  25. endforeach(plugin)
  26. foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
  27. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
  28. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
  29. endforeach(ffi_plugin)