generated_plugins.cmake 796 B

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