2023-01-15 17:51:26 +03:00
|
|
|
#
|
|
|
|
# Generated file, do not edit.
|
|
|
|
#
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_PLUGIN_LIST
|
2023-02-12 15:02:19 +03:00
|
|
|
connectivity_plus
|
2023-04-13 23:17:47 +03:00
|
|
|
dynamic_color
|
2024-07-24 23:07:35 +03:00
|
|
|
flutter_timezone
|
2023-05-07 13:03:24 +03:00
|
|
|
geolocator_windows
|
2023-01-17 16:20:28 +03:00
|
|
|
isar_flutter_libs
|
2023-03-16 19:17:54 +03:00
|
|
|
url_launcher_windows
|
2023-01-15 17:51:26 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
2025-03-16 21:24:22 +03:00
|
|
|
flutter_local_notifications_windows
|
2023-01-15 17:51:26 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
set(PLUGIN_BUNDLED_LIBRARIES)
|
|
|
|
|
|
|
|
foreach(plugin ${FLUTTER_PLUGIN_LIST})
|
|
|
|
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows 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}/windows plugins/${ffi_plugin})
|
|
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
|
|
|
|
endforeach(ffi_plugin)
|