Skip to content

Commit

Permalink
⚙️ :: SPM init
Browse files Browse the repository at this point in the history
  • Loading branch information
kimxwan0319 committed Sep 8, 2021
1 parent 5b399e8 commit 1d215e1
Show file tree
Hide file tree
Showing 3 changed files with 31 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 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
xcuserdata/
DerivedData/
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
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.3
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "SemicolonDesign",
products: [
.library(
name: "SemicolonDesign",
targets: ["SemicolonDesign"]),
],
dependencies: [

],
targets: [
.target(
name: "SemicolonDesign",
dependencies: []),
]
)
3 changes: 3 additions & 0 deletions Sources/SemicolonDesign/SemicolonDesign.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
struct SemicolonDesign {
var text = "Hello, World!"
}

0 comments on commit 1d215e1

Please sign in to comment.