Package.swift 1021 B

1234567891011121314151617181920212223242526
  1. // swift-tools-version:5.9
  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: "FMDB",
  6. products: [
  7. // Products define the executables and libraries produced by a package, and make them visible to other packages.
  8. .library(name: "FMDB", targets: ["FMDB"]),
  9. ],
  10. dependencies: [
  11. // Dependencies declare other packages that this package depends on.
  12. // .package(url: /* package url */, from: "1.0.0"),
  13. ],
  14. targets: [
  15. // Targets are the basic building blocks of a package. A target can define a module or a test suite.
  16. // Targets can depend on other targets in this package, and on products in packages which this package depends on.
  17. .target(
  18. name: "FMDB",
  19. dependencies: [],
  20. path: "src/fmdb",
  21. resources: [.process("../../privacy/PrivacyInfo.xcprivacy")],
  22. publicHeadersPath: "."),
  23. ]
  24. )