Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
flutter_screenutil
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Mounir-Bouaiche
2022-05-12 18:31:31 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a584068f742db38ec7ba79f465303b5ca3dca1cf
a584068f
1 parent
dac2d2fb
After update to Flutter 3.0.0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
example/linux/flutter/generated_plugins.cmake
example/windows/flutter/generated_plugins.cmake
example/linux/flutter/generated_plugins.cmake
View file @
a584068
...
...
@@ -5,6 +5,9 @@
list
(
APPEND FLUTTER_PLUGIN_LIST
)
list
(
APPEND FLUTTER_FFI_PLUGIN_LIST
)
set
(
PLUGIN_BUNDLED_LIBRARIES
)
foreach
(
plugin
${
FLUTTER_PLUGIN_LIST
}
)
...
...
@@ -13,3 +16,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
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
}
/linux plugins/
${
ffi_plugin
}
)
list
(
APPEND PLUGIN_BUNDLED_LIBRARIES
${${
ffi_plugin
}
_bundled_libraries
}
)
endforeach
(
ffi_plugin
)
...
...
example/windows/flutter/generated_plugins.cmake
View file @
a584068
...
...
@@ -5,6 +5,9 @@
list
(
APPEND FLUTTER_PLUGIN_LIST
)
list
(
APPEND FLUTTER_FFI_PLUGIN_LIST
)
set
(
PLUGIN_BUNDLED_LIBRARIES
)
foreach
(
plugin
${
FLUTTER_PLUGIN_LIST
}
)
...
...
@@ -13,3 +16,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
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
)
...
...
Please
register
or
login
to post a comment