Main coves client
1#
2# Generated file, do not edit.
3#
4
5list(APPEND FLUTTER_PLUGIN_LIST
6 desktop_webview_window
7 flutter_secure_storage_windows
8 share_plus
9 url_launcher_windows
10 window_to_front
11)
12
13list(APPEND FLUTTER_FFI_PLUGIN_LIST
14)
15
16set(PLUGIN_BUNDLED_LIBRARIES)
17
18foreach(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})
23endforeach(plugin)
24
25foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
26 add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
27 list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
28endforeach(ffi_plugin)