Skip to content

Commit

Permalink
🚁 Taking off
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaelIsaev committed Dec 16, 2022
0 parents commit a26f9f2
Show file tree
Hide file tree
Showing 6 changed files with 1,745 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Packages
.build
.DS_Store
*.xcodeproj
DerivedData/
Package.resolved
.swiftpm
21 changes: 21 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// swift-tools-version:5.7
import PackageDescription

let package = Package(
name: "autolayout",
platforms: [
.macOS(.v10_15)
],
products: [
.library(name: "Autolayout", type: .static, targets: ["Autolayout"])
],
dependencies: [
.package(url: "https://github.com/swifweb/web", from: "1.0.0-beta.1.20.0")
],
targets: [
.target(name: "Autolayout", dependencies: [
.product(name: "Web", package: "web")
]),
.testTarget(name: "AutolayoutTests", dependencies: ["Autolayout"])
]
)
Loading

0 comments on commit a26f9f2

Please sign in to comment.