Skip to content

Commit

Permalink
MPS added.
Browse files Browse the repository at this point in the history
  • Loading branch information
devuzan committed Aug 23, 2022
1 parent 9d7b41a commit 5f6925a
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -13,16 +13,17 @@ let package = Package(
targets: ["UIKitBuilder"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),

.package(
url: "https://github.com/devuzan/MorePowerfulSwift",
from: "0.0.1"
)
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "UIKitBuilder",
dependencies: []),
dependencies: ["MorePowerfulSwift"]),
.testTarget(
name: "UIKitBuilderTests",
dependencies: ["UIKitBuilder"]),
8 changes: 8 additions & 0 deletions Sources/UIKitBuilder/UIKitBuilder.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// File.swift
//
//
// Created by Yusuf Uzan on 23.08.2022.
//

import MorePowerfulSwift

0 comments on commit 5f6925a

Please sign in to comment.