File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
+ // ignore_for_file: avoid_print
16
+
15
17
import 'dart:io' ;
16
18
import 'dart:convert' ;
17
19
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ list(APPEND FLUTTER_PLUGIN_LIST
6
6
webcrypto
7
7
)
8
8
9
+ list (APPEND FLUTTER_FFI_PLUGIN_LIST
10
+ )
11
+
9
12
set (PLUGIN_BUNDLED_LIBRARIES)
10
13
11
14
foreach (plugin ${FLUTTER_PLUGIN_LIST} )
@@ -14,3 +17,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
14
17
list (APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin} _plugin>)
15
18
list (APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin} _bundled_libraries})
16
19
endforeach (plugin)
20
+
21
+ foreach (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})
24
+ endforeach (ffi_plugin)
You can’t perform that action at this time.
0 commit comments