-
-
Notifications
You must be signed in to change notification settings - Fork 871
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78d0412
commit 5dd73b8
Showing
401 changed files
with
8,319 additions
and
4,648 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "BoltsFramework/Bolts-ObjC" ~> 1.9.1 | ||
github "facebook/facebook-ios-sdk" == 11.0.1 | ||
github "vazarkevych/Bolts-ObjC" "spm" | ||
github "facebook/facebook-ios-sdk" == 15.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,143 +1,82 @@ | ||
// swift-tools-version: 5.7 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
// swift-tools-version:5.5 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Parse-SDK-iOS-OSX", | ||
name: "ParseObjC", | ||
defaultLocalization: "en", | ||
platforms: [ | ||
.macOS(.v10_15), | ||
.iOS(.v12), | ||
.tvOS(.v12), | ||
.watchOS(.v5) | ||
], | ||
platforms: [.iOS(.v12), | ||
.macOS(.v10_10), | ||
.tvOS(.v12), | ||
.watchOS(.v2)], | ||
products: [ | ||
.library( | ||
name: "Parse", | ||
type: .dynamic, | ||
targets: ["Parse-iOS"] | ||
) | ||
.library(name: "ParseObjC", targets: ["ParseCore"]), | ||
.library(name: "ParseFacebookUtilsiOS", targets: ["ParseFacebookUtilsiOS"]), | ||
.library(name: "ParseFacebookUtilsTvOS", targets: ["ParseFacebookUtilsTvOS"]), | ||
.library(name: "ParseTwitterUtils", targets: ["ParseTwitterUtils"]), | ||
.library(name: "ParseUI", targets: ["ParseUI"]) | ||
], | ||
dependencies: [ | ||
// Dependencies declare other packages that this package depends on. | ||
// .package(url: /* package url */, from: "1.0.0"), | ||
// .package(url: "https://github.com/BoltsFramework/Bolts-Swift", branch: "main") | ||
.package(url: "https://github.com/mman/Bolts-ObjC.git", branch: "spm"), | ||
.package(url: "https://github.com/erikdoe/ocmock.git", branch: "master") | ||
.package(url: "https://github.com/vazarkevych/Bolts-ObjC.git", branch: "spm"), | ||
.package(url: "https://github.com/facebook/facebook-ios-sdk", from: "15.1.0") | ||
], | ||
targets: [ | ||
// Targets are the basic building blocks of a package. A target can define a module or a test suite. | ||
// Targets can depend on other targets in this package, and on products in packages this package depends on. | ||
// .target( | ||
// name: "Bolt-iOS", | ||
// dependencies: [ | ||
// // .product(name: "BoltsSwift", package: "Bolts-Swift") | ||
// ], | ||
// path: "Carthage/Checkouts/Bolts-ObjC/Bolts", | ||
// publicHeadersPath: ".", | ||
// cSettings: [ | ||
// .headerSearchPath("Internal"), | ||
// ] | ||
// ), | ||
.target( | ||
name: "Parse-iOS", | ||
name: "ParseCore", | ||
dependencies: [.product(name: "Bolts", package: "Bolts-ObjC")], | ||
path: "Parse/Parse", | ||
exclude: ["Resources/Parse-tvOS.Info.plist", "Resources/Parse-iOS.Info.plist", "Resources/Parse-OSX.Info.plist", "Resources/Parse-watchOS.Info.plist"], | ||
resources: [.process("Resources")], | ||
publicHeadersPath: "Source", | ||
cSettings: [.headerSearchPath("Internal/**")]), | ||
.target( | ||
name: "ParseFacebookUtils", | ||
dependencies: [ | ||
"ParseCore", | ||
.product(name: "Bolts", package: "Bolts-ObjC"), | ||
.product(name: "OCMock", package: "ocmock") | ||
], | ||
path: "Parse/Parse", | ||
publicHeadersPath: ".", | ||
cSettings: [ | ||
.headerSearchPath("."), | ||
.headerSearchPath("Internal"), | ||
.headerSearchPath("Internal/Object"), | ||
.headerSearchPath("Internal/Object/Controller/OfflineController"), | ||
.headerSearchPath("Internal/Object/LocalIdStore"), | ||
.headerSearchPath("Internal/Object/EstimatedData"), | ||
.headerSearchPath("Internal/Object/BatchController"), | ||
.headerSearchPath("Internal/Object/PinningStore"), | ||
.headerSearchPath("Internal/Object/OperationSet"), | ||
.headerSearchPath("Internal/Object/State"), | ||
.headerSearchPath("Internal/Object/Constants"), | ||
.headerSearchPath("Internal/Object/Subclassing"), | ||
.headerSearchPath("Internal/Object/Utilities"), | ||
.headerSearchPath("Internal/Object/Coder/File"), | ||
.headerSearchPath("Internal/Object/Controller"), | ||
.headerSearchPath("Internal/Object/FilePersistence"), | ||
.headerSearchPath("Internal/Object/CurrentController"), | ||
.headerSearchPath("Internal/User"), | ||
.headerSearchPath("Internal/User/AuthenticationProviders/Providers/Anonymous"), | ||
.headerSearchPath("Internal/User/AuthenticationProviders/Controller"), | ||
.headerSearchPath("Internal/User/Constants"), | ||
.headerSearchPath("Internal/User/Controller"), | ||
.headerSearchPath("Internal/User/State"), | ||
.headerSearchPath("Internal/User/Coder/File"), | ||
.headerSearchPath("Internal/User/CurrentUserController"), | ||
.headerSearchPath("Internal/Product"), | ||
.headerSearchPath("Internal/Product/ProductsRequestHandler"), | ||
.headerSearchPath("Internal/LocalDataStore"), | ||
.headerSearchPath("Internal/LocalDataStore/SQLite"), | ||
.headerSearchPath("Internal/LocalDataStore/OfflineQueryLogic"), | ||
.headerSearchPath("Internal/LocalDataStore/OfflineStore"), | ||
.headerSearchPath("Internal/LocalDataStore/Pin"), | ||
.headerSearchPath("Internal/Commands"), | ||
.headerSearchPath("Internal/Commands/CommandRunner"), | ||
.headerSearchPath("Internal/Commands/CommandRunner/URLRequestConstructor"), | ||
.headerSearchPath("Internal/Commands/CommandRunner/URLSession"), | ||
.headerSearchPath("Internal/Commands/CommandRunner/URLSession/Session"), | ||
.headerSearchPath("Internal/Commands/CommandRunner/URLSession/Session/TaskDelegate"), | ||
.headerSearchPath("Internal/Relation"), | ||
.headerSearchPath("Internal/Relation/State"), | ||
.headerSearchPath("Internal/Analytics"), | ||
.headerSearchPath("Internal/Analytics/Utilities"), | ||
.headerSearchPath("Internal/Analytics/Controller"), | ||
.headerSearchPath("Internal/FieldOperation"), | ||
.headerSearchPath("Internal/Installation/Constants"), | ||
.headerSearchPath("Internal/Installation/InstallationIdentifierStore"), | ||
.headerSearchPath("Internal/Installation/CurrentInstallationController"), | ||
.headerSearchPath("Internal/Query"), | ||
.headerSearchPath("Internal/Query/Controller"), | ||
.headerSearchPath("Internal/Query/State"), | ||
.headerSearchPath("Internal/Query/Utilities"), | ||
.headerSearchPath("Internal/KeyValueCache"), | ||
.headerSearchPath("Internal/MultiProcessLock"), | ||
.headerSearchPath("Internal/ACL"), | ||
.headerSearchPath("Internal/ACL/State"), | ||
.headerSearchPath("Internal/ACL/DefaultACLController"), | ||
.headerSearchPath("Internal/Purchase/PaymentTransactionObserver"), | ||
.headerSearchPath("Internal/Purchase/Controller"), | ||
.headerSearchPath("Internal/Session/Controller"), | ||
.headerSearchPath("Internal/Session/Utilities"), | ||
.headerSearchPath("Internal/File"), | ||
.headerSearchPath("Internal/File/State"), | ||
.headerSearchPath("Internal/File/Controller"), | ||
.headerSearchPath("Internal/File/FileDataStream"), | ||
.headerSearchPath("Internal/Persistence"), | ||
.headerSearchPath("Internal/Persistence/Group"), | ||
.headerSearchPath("Internal/Installation"), | ||
.headerSearchPath("Internal/Installation/Controller"), | ||
.headerSearchPath("Internal/PropertyInfo"), | ||
.headerSearchPath("Internal/CloudCode"), | ||
.headerSearchPath("Internal/Config"), | ||
.headerSearchPath("Internal/Config/Controller"), | ||
.headerSearchPath("Internal/Push"), | ||
.headerSearchPath("Internal/Push/State"), | ||
.headerSearchPath("Internal/Push/Utilites"), | ||
.headerSearchPath("Internal/Push/Manager"), | ||
.headerSearchPath("Internal/Push/Controller"), | ||
.headerSearchPath("Internal/Push/ChannelsController"), | ||
.headerSearchPath("Internal/ThreadSafety"), | ||
.headerSearchPath("Internal/HTTPRequest/RequestConstructor"), | ||
.headerSearchPath("Internal/HTTPRequest") | ||
] | ||
) | ||
|
||
// .executableTarget( | ||
// name: "Parse-SDK-iOS-OSX", | ||
// dependencies: []), | ||
// .testTarget( | ||
// name: "Parse-SDK-iOS-OSXTests", | ||
// dependencies: ["Parse-SDK-iOS-OSX"]), | ||
.product(name: "FacebookCore", package: "facebook-ios-sdk", condition: .when(platforms: [.iOS, .tvOS])), | ||
.product(name: "FacebookLogin", package: "facebook-ios-sdk", condition: .when(platforms: [.iOS, .tvOS]))], | ||
path: "ParseFacebookUtils/ParseFacebookUtils", | ||
exclude: ["exclude", "Resources/Info-tvOS.plist", "Resources/Info-iOS.plist"], | ||
resources: [.process("Resources")], | ||
publicHeadersPath: "Source"), | ||
.target(name: "ParseFacebookUtilsiOS", | ||
dependencies: [ | ||
"ParseFacebookUtils" | ||
], | ||
path: "ParseFacebookUtilsiOS/ParseFacebookUtilsiOS", | ||
exclude: ["exclude", "Resources/Info-iOS.plist"], | ||
resources: [.process("Resources")], | ||
publicHeadersPath: "Source", | ||
cSettings: [.headerSearchPath("Internal/**")]), | ||
.target(name: "ParseFacebookUtilsTvOS", | ||
dependencies: [ | ||
"ParseFacebookUtils", | ||
.product(name: "FacebookTV", package: "facebook-ios-sdk", condition: .when(platforms: [.tvOS])) | ||
], | ||
path: "ParseFacebookUtilsTvOS/ParseFacebookUtilsTvOS", | ||
exclude: ["exclude", "Resources/Info-tvOS.plist"], | ||
resources: [.process("Resources")], | ||
publicHeadersPath: "Source", | ||
cSettings: [.headerSearchPath("Internal/**")]), | ||
.target(name: "ParseTwitterUtils", | ||
dependencies: [ | ||
"ParseCore" | ||
], | ||
path: "ParseTwitterUtils/ParseTwitterUtils", | ||
exclude: ["Resources/Info-iOS.plist"], | ||
resources: [.process("Resources")], | ||
publicHeadersPath: "Source", | ||
cSettings: [.headerSearchPath("Internal/**")]), | ||
.target(name: "ParseUI", | ||
dependencies: [ | ||
"ParseFacebookUtilsiOS", | ||
"ParseTwitterUtils" | ||
], | ||
path: "ParseUI/ParseUI", | ||
exclude: ["Resources/Info-iOS.plist"], | ||
resources: [.process("Resources")], | ||
publicHeadersPath: "Source", | ||
cSettings: [.headerSearchPath("Internal/**")]), | ||
] | ||
) |
Oops, something went wrong.