Package.swift 700 B

1234567891011121314151617181920
  1. // swift-tools-version:5.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: "SwiftSerialIM",
  6. dependencies: [
  7. .package(url: "https://github.com/yeokm1/SwiftSerial.git", from: "0.1.2")
  8. ],
  9. targets: [
  10. // Targets are the basic building blocks of a package. A target can define a module or a test suite.
  11. // Targets can depend on other targets in this package, and on products in packages which this package depends on.
  12. .target(
  13. name: "SwiftSerialIM",
  14. dependencies: ["SwiftSerial"],
  15. path: "Sources"
  16. ),
  17. ]
  18. )