Skip to content

Commit 7b60e69

Browse files
flutter pub run build_runner build
1 parent cc0cc69 commit 7b60e69

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

lib/objectbox.g.dart

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

linux/flutter/generated_plugins.cmake

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ list(APPEND FLUTTER_PLUGIN_LIST
77
objectbox_flutter_libs
88
)
99

10+
list(APPEND FLUTTER_FFI_PLUGIN_LIST
11+
)
12+
1013
set(PLUGIN_BUNDLED_LIBRARIES)
1114

1215
foreach(plugin ${FLUTTER_PLUGIN_LIST})
@@ -15,3 +18,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
1518
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
1619
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
1720
endforeach(plugin)
21+
22+
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
23+
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
24+
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
25+
endforeach(ffi_plugin)

macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Foundation
77

88
import isar_flutter_libs
99
import objectbox_flutter_libs
10-
import path_provider_macos
10+
import path_provider_foundation
1111
import sqflite
1212

1313
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {

windows/flutter/generated_plugins.cmake

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ list(APPEND FLUTTER_PLUGIN_LIST
77
objectbox_flutter_libs
88
)
99

10+
list(APPEND FLUTTER_FFI_PLUGIN_LIST
11+
)
12+
1013
set(PLUGIN_BUNDLED_LIBRARIES)
1114

1215
foreach(plugin ${FLUTTER_PLUGIN_LIST})
@@ -15,3 +18,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
1518
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
1619
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
1720
endforeach(plugin)
21+
22+
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
23+
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
24+
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
25+
endforeach(ffi_plugin)

0 commit comments

Comments
 (0)