2021-11-19 10:50:09 +03:00
|
|
|
#
|
|
|
|
# Generated file, do not edit.
|
|
|
|
#
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_PLUGIN_LIST
|
2022-04-04 16:15:05 +03:00
|
|
|
desktop_drop
|
2023-02-24 15:59:09 +03:00
|
|
|
local_notifier
|
2022-06-13 09:34:10 +03:00
|
|
|
screen_retriever
|
2023-02-24 15:59:09 +03:00
|
|
|
tray_manager
|
2022-06-05 13:26:40 +03:00
|
|
|
url_launcher_linux
|
2021-12-03 12:27:29 +03:00
|
|
|
window_manager
|
2021-11-19 10:50:09 +03:00
|
|
|
)
|
|
|
|
|
2022-03-25 11:20:46 +03:00
|
|
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
|
|
|
)
|
|
|
|
|
2021-11-19 10:50:09 +03:00
|
|
|
set(PLUGIN_BUNDLED_LIBRARIES)
|
|
|
|
|
|
|
|
foreach(plugin ${FLUTTER_PLUGIN_LIST})
|
|
|
|
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
|
|
|
|
target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
|
|
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
|
|
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
|
|
|
|
endforeach(plugin)
|
2022-03-25 11:20:46 +03:00
|
|
|
|
|
|
|
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
|
|
|
|
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
|
|
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
|
|
|
|
endforeach(ffi_plugin)
|