Package.swift 871 B

1234567891011121314151617181920212223242526
  1. // swift-tools-version:5.2
  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: "StringsConvertor",
  6. platforms: [
  7. .macOS(.v10_15)
  8. ],
  9. dependencies: [
  10. // Dependencies declare other packages that this package depends on.
  11. // .package(url: /* package url */, from: "1.0.0"),
  12. ],
  13. targets: [
  14. // Targets are the basic building blocks of a package. A target can define a module or a test suite.
  15. // Targets can depend on other targets in this package, and on products in packages which this package depends on.
  16. .target(
  17. name: "StringsConvertor",
  18. dependencies: []),
  19. .testTarget(
  20. name: "StringsConvertorTests",
  21. dependencies: ["StringsConvertor"]),
  22. ]
  23. )