Skip to content

Commit

Permalink
Create Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
lm2343635 authored Dec 18, 2023
1 parent c52f546 commit 34994c6
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "RxAlertViewable",
platforms: [
.iOS(.v10)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "RxAlertViewable",
targets: ["RxAlertViewable"]
),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0")),
],
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 which this package depends on.
.target(
name: "RxAlertViewable",
dependencies: [
"RxSwift",
.product(name: "RxCocoa", package: "RxSwift")
]),
.testTarget(
name: "RxAlertViewableTests",
dependencies: ["RxAlertViewable"]
),
]
)

0 comments on commit 34994c6

Please sign in to comment.