add windows dir

This commit is contained in:
Henry Hiles 2025-11-29 12:04:39 -05:00
commit 3adc462d0f
No known key found for this signature in database
19 changed files with 1129 additions and 1 deletions

View file

@ -0,0 +1,32 @@
#
# Generated file, do not edit.
#
list(APPEND FLUTTER_PLUGIN_LIST
dynamic_system_colors
file_selector_windows
screen_retriever_windows
simple_secure_storage_windows
url_launcher_windows
webcrypto
window_manager
window_size
)
list(APPEND FLUTTER_FFI_PLUGIN_LIST
flutter_vodozemac
)
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)