Skip to content

Commit

Permalink
Support SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuswu0814 committed May 14, 2024
1 parent 6dbc907 commit 8d9c932
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.build

# Mac OS X
.DS_Store

Expand Down
23 changes: 23 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version: 5.10

import PackageDescription

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

0 comments on commit 8d9c932

Please sign in to comment.