Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 line
394 B

  1. import PackageDescription
  2. let package = Package(
  3. name: "Action",
  4. platforms: [
  5. .macOS(.v11),
  6. .iOS(.v13)
  7. ],
  8. products: [
  9. .library(
  10. name: "Action",
  11. targets: ["Action"]),
  12. ],
  13. dependencies: [],
  14. targets: [
  15. .target(
  16. name: "Action",
  17. dependencies: [],
  18. path: "src",
  19. ),
  20. ]
  21. )