Skip to content

Commit

Permalink
Create Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
arturdev authored Jun 24, 2023
1 parent e4c5969 commit 9eca19b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "SwiftyCodeView",
platforms: [.iOS(.v13)],
products: [
.library(name: "SwiftyCodeView", targets: ["SwiftyCodeView"]),
],
targets: [
.target(
name: "SwiftyCodeView",
path: "SwiftyCodeView/Classes"
)
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 9eca19b

Please sign in to comment.