Package.swift 827 B

123456789101112131415161718192021222324
  1. // swift-tools-version: 6.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: "CoordinatorSUI",
  6. products: [
  7. // Products define the executables and libraries a package produces, making them visible to other packages.
  8. .library(
  9. name: "CoordinatorSUI",
  10. targets: ["CoordinatorSUI"]),
  11. ],
  12. targets: [
  13. // Targets are the basic building blocks of a package, defining a module or a test suite.
  14. // Targets can depend on other targets in this package and products from dependencies.
  15. .target(
  16. name: "CoordinatorSUI"),
  17. .testTarget(
  18. name: "CoordinatorSUITests",
  19. dependencies: ["CoordinatorSUI"]
  20. ),
  21. ]
  22. )