generated_plugins.cmake 966 B

123456789101112131415161718192021222324252627282930313233
  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. )
  16. list(APPEND FLUTTER_FFI_PLUGIN_LIST
  17. )
  18. set(PLUGIN_BUNDLED_LIBRARIES)
  19. foreach(plugin ${FLUTTER_PLUGIN_LIST})
  20. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin})
  21. target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
  22. list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
  23. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
  24. endforeach(plugin)
  25. foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
  26. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
  27. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
  28. endforeach(ffi_plugin)