Skip to content

Commit

Permalink
Support pm
Browse files Browse the repository at this point in the history
  • Loading branch information
jbdtky committed Mar 16, 2022
1 parent 4cdf05c commit 0ddd8f0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// swift-tools-version:5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "ColorSlider",
platforms: [
.iOS(.v14),
],
products: [
.library(
name: "ColorSlider",
targets: ["ColorSlider"]),
],
dependencies: [],
targets: [
.target(
name: "ColorSlider",
path: "Sources",
dependencies: []
)
]
)

0 comments on commit 0ddd8f0

Please sign in to comment.