Package.swift 582 B

1234567891011121314151617181920212223
  1. // swift-tools-version:4.0
  2. // The swift-tools-version declares the minimum version of Swift required to build this package.
  3. import PackageDescription
  4. let package = Package(
  5. name: "Reachability",
  6. products: [
  7. .library(
  8. name: "Reachability",
  9. targets: ["Reachability"]),
  10. ],
  11. targets: [
  12. .target(
  13. name: "Reachability",
  14. dependencies: [],
  15. path: "Sources"),
  16. .testTarget(
  17. name: "ReachabilityTests",
  18. dependencies: ["Reachability"],
  19. path: "Tests"),
  20. ]
  21. )