nandi/vflutter_ffipublic Fork 0
main
Commits
Clone
git clone https://git.rickub.com/nandi/vflutter_ffi.git
git clone ssh://git@rickub.com/nandi/vflutter_ffi.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

generated_plugins.cmake · 24 lines · 756 BCMake Blame HistoryRaw
Add a Mandelbrot example app, and a V kernel worth demonstrating 81540bb nandithebull 6h ago1#
2# Generated file, do not edit.
3#
4
5list(APPEND FLUTTER_PLUGIN_LIST
6)
7
8list(APPEND FLUTTER_FFI_PLUGIN_LIST
Replace V with Nim 472eb49 nandithebull 3h ago9 nimflutter_ffi
Add a Mandelbrot example app, and a V kernel worth demonstrating 81540bb nandithebull 6h ago10)
11
12set(PLUGIN_BUNDLED_LIBRARIES)
13
14foreach(plugin ${FLUTTER_PLUGIN_LIST})
15 add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
16 target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
17 list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
18 list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
19endforeach(plugin)
20
21foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
22 add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
23 list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
24endforeach(ffi_plugin)