mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
* wip * wip * wip * wip * wip * basics * wip * wip * wip got LocalSearchClient spm package * got a common spm package * basics of desktop * renamed * wip * clean up * Fix * clean up * formatting and remove deprecated * wip * move stuff around, readmes * fix * clean up * image * typo * docs * wip * typo * rename * wip * clean up * clean up * rename * wip * Update README.md * custom button * format * wip * fix * error info * public interface * set, alpha * add error * fix * alpha * internal * Revert "internal" This reverts commit97da6f3086. * wip * wip * docs * rename * cleanup * add fatal error messages to mock * fixes * fixes * clean up * 13.3 fixes * another fix * 13.3 fixes * wip * fix mac tests * wip * just use double * fix * Revert "fix" This reverts commit4565a6485f. * fix * Fix? * Fix * More fix Co-authored-by: Stephen Celis <stephen@stephencelis.com>
53 lines
1.0 KiB
Swift
53 lines
1.0 KiB
Swift
// swift-tools-version:5.1
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swift-composable-architecture",
|
|
platforms: [
|
|
.iOS(.v13),
|
|
.macOS(.v10_15),
|
|
.tvOS(.v13),
|
|
.watchOS(.v6),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "ComposableArchitecture",
|
|
targets: ["ComposableArchitecture"]
|
|
),
|
|
.library(
|
|
name: "ComposableCoreLocation",
|
|
targets: ["ComposableCoreLocation"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "0.1.1")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "ComposableArchitecture",
|
|
dependencies: [
|
|
"CasePaths"
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "ComposableArchitectureTests",
|
|
dependencies: [
|
|
"ComposableArchitecture",
|
|
]
|
|
),
|
|
.target(
|
|
name: "ComposableCoreLocation",
|
|
dependencies: [
|
|
"ComposableArchitecture"
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "ComposableCoreLocationTests",
|
|
dependencies: [
|
|
"ComposableCoreLocation",
|
|
]
|
|
),
|
|
]
|
|
)
|