Skip to content

Commit 2d0f1e8

Browse files
First try with SPM
1 parent 39d8c8c commit 2d0f1e8

24 files changed

+441
-1228
lines changed

DeviceIdentificator.xcodeproj/project.pbxproj

Lines changed: 0 additions & 772 deletions
This file was deleted.

DeviceIdentificator.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 7 deletions
This file was deleted.

DeviceIdentificator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

Lines changed: 0 additions & 8 deletions
This file was deleted.

DeviceIdentificator.xcodeproj/xcshareddata/xcschemes/DeviceIdentificator-iOS.xcscheme

Lines changed: 0 additions & 96 deletions
This file was deleted.

DeviceIdentificator.xcodeproj/xcshareddata/xcschemes/DeviceIdentificator-tvOS.xcscheme

Lines changed: 0 additions & 96 deletions
This file was deleted.

Package.swift

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// swift-tools-version: 5.9
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "DeviceIdentificator",
8+
platforms: [
9+
.watchOS(.v6),
10+
.tvOS(.v14),
11+
.visionOS(.v1),
12+
.iOS(.v14),
13+
.macCatalyst(.v14),
14+
.macOS(.v10_13)
15+
],
16+
products: [
17+
// Products define the executables and libraries a package produces, making them visible to other packages.
18+
.library(
19+
name: "DeviceIdentificator",
20+
targets: ["DeviceIdentificator"]),
21+
],
22+
targets: [
23+
// Targets are the basic building blocks of a package, defining a module or a test suite.
24+
// Targets can depend on other targets in this package and products from dependencies.
25+
.target(
26+
name: "DeviceIdentificator"),
27+
.testTarget(
28+
name: "DeviceIdentificatorTests",
29+
dependencies: ["DeviceIdentificator"]),
30+
]
31+
)

Source/DeviceIdentificator.h

Lines changed: 0 additions & 19 deletions
This file was deleted.

Source/DeviceModel.swift

Lines changed: 0 additions & 130 deletions
This file was deleted.

0 commit comments

Comments
 (0)