Skip to content

Commit

Permalink
Merge pull request #5 from noppefoxwolf/support-swiftpm
Browse files Browse the repository at this point in the history
Support Swift Package Manager
  • Loading branch information
taka0125 authored Jul 25, 2022
2 parents 2d7d86c + 900724f commit 5eab7cd
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "TAKUUID",
defaultLocalization: "en",
products: [
.library(
name: "TAKUUID",
targets: ["TAKUUID"]),
],
targets: [
.target(
name: "TAKUUID",
path: "Classes",
publicHeadersPath: "."
),
// FIXME: SwiftPM cannot access keychain. Try with xcodeproj.
// .testTarget(
// name: "TAKUUIDTests",
// dependencies: ["TAKUUID"],
// path: "TAKUUIDTests",
// ),
]
)

0 comments on commit 5eab7cd

Please sign in to comment.