generated_plugins.cmake 927 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # Generated file, do not edit.
  3. #
  4. list(APPEND FLUTTER_PLUGIN_LIST
  5. audioplayers_windows
  6. connectivity_plus
  7. file_selector_windows
  8. flutter_tts
  9. local_auth_windows
  10. local_notifier
  11. permission_handler_windows
  12. share_plus
  13. url_launcher_windows
  14. )
  15. list(APPEND FLUTTER_FFI_PLUGIN_LIST
  16. )
  17. set(PLUGIN_BUNDLED_LIBRARIES)
  18. foreach(plugin ${FLUTTER_PLUGIN_LIST})
  19. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin})
  20. target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
  21. list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
  22. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
  23. endforeach(plugin)
  24. foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
  25. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
  26. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
  27. endforeach(ffi_plugin)