Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(share_plus)!: two-package federated architecture #1238

Merged
merged 10 commits into from Oct 14, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 0 additions & 18 deletions packages/share_plus/share_plus/example/ios/Flutter/Flutter.podspec

This file was deleted.

12 changes: 6 additions & 6 deletions packages/share_plus/share_plus/windows/CMakeLists.txt
Expand Up @@ -5,24 +5,24 @@
cmake_minimum_required(VERSION 3.14)

# Project-level configuration.
set(PROJECT_NAME "share_plus_windows")
set(PROJECT_NAME "share_plus")
project(${PROJECT_NAME} LANGUAGES CXX)

# This value is used when generating builds using this plugin, so it must
# not be changed
set(PLUGIN_NAME "share_plus_windows_plugin")
set(PLUGIN_NAME "share_plus_plugin")

# Any new source files that you add to the plugin should be added here.
list(APPEND PLUGIN_SOURCES
"share_plus_windows_plugin.cpp"
"share_plus_plugin.cpp"
"share_plus_windows_plugin.h"
)

# Define the plugin library target. Its name must not be changed (see comment
# on PLUGIN_NAME above).
add_library(${PLUGIN_NAME} SHARED
"include/share_plus_windows/share_plus_windows_plugin_c_api.h"
"share_plus_windows_plugin_c_api.cpp"
"include/share_plus/share_plus_windows_plugin_c_api.h"
miquelbeltran marked this conversation as resolved.
Show resolved Hide resolved
"share_plus_plugin_c_api.cpp"
${PLUGIN_SOURCES}
)

Expand All @@ -47,7 +47,7 @@ target_link_libraries(${PLUGIN_NAME} PRIVATE flutter flutter_wrapper_plugin)
# List of absolute paths to libraries that should be bundled with the plugin.
# This list could contain prebuilt libraries, or libraries created by an
# external build triggered from this build file.
set(share_plus_windows_bundled_libraries
set(share_plus_bundled_libraries
""
PARENT_SCOPE
)

This file was deleted.

269 changes: 0 additions & 269 deletions packages/share_plus/share_plus/windows/share_plus_windows_plugin.cpp

This file was deleted.

This file was deleted.