2023-05-06 21:14:12 +00:00
|
|
|
#
|
|
|
|
# Generated file, do not edit.
|
|
|
|
#
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_PLUGIN_LIST
|
2023-06-29 22:41:11 +00:00
|
|
|
file_selector_linux
|
2023-10-08 17:20:42 +00:00
|
|
|
screen_retriever
|
2023-06-17 21:50:52 +00:00
|
|
|
sqlite3_flutter_libs
|
2023-07-20 20:56:00 +00:00
|
|
|
url_launcher_linux
|
2023-10-08 17:20:42 +00:00
|
|
|
window_manager
|
2023-05-06 21:14:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
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)
|