generated_plugins.cmake 766 B

123456789101112131415161718192021222324
  1. #
  2. # Generated file, do not edit.
  3. #
  4. list(APPEND FLUTTER_PLUGIN_LIST
  5. url_launcher_windows
  6. )
  7. list(APPEND FLUTTER_FFI_PLUGIN_LIST
  8. )
  9. set(PLUGIN_BUNDLED_LIBRARIES)
  10. foreach(plugin ${FLUTTER_PLUGIN_LIST})
  11. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin})
  12. target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
  13. list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
  14. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
  15. endforeach(plugin)
  16. foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
  17. add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
  18. list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
  19. endforeach(ffi_plugin)