Skip to content

Commit ac11bb1

Browse files
committed
Creating helios wrapper
1 parent b040b8f commit ac11bb1

File tree

8 files changed

+1399
-0
lines changed

8 files changed

+1399
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
/*.xcodeproj
5+
xcuserdata/
6+
DerivedData/
7+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

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.5
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: "HeliosKit",
8+
platforms: [.macOS(.v10_15), .iOS(.v13)],
9+
products: [
10+
// Products define the executables and libraries a package produces, and make them visible to other packages.
11+
.library(
12+
name: "HeliosKit",
13+
targets: ["HeliosKit"]),
14+
],
15+
dependencies: [
16+
// Dependencies declare other packages that this package depends on.
17+
// .package(url: /* package url */, from: "1.0.0"),
18+
],
19+
targets: [
20+
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
21+
// Targets can depend on other targets in this package, and on products in packages this package depends on.
22+
// .binaryTarget(name: "helios", path: "helios.xcframework"), // When building the xcframework locally
23+
.binaryTarget(
24+
name: "helios",
25+
url: "https://github.com/rkreutz/HeliosKit/releases/download/0.1.0/helios.xcframework.zip",
26+
checksum: "642542f3af573d571172096c08b5c4611cbdce8456a08a319f6ebc044ab50688"),
27+
.target(
28+
name: "HeliosKit",
29+
dependencies: ["helios"]),
30+
]
31+
)

0 commit comments

Comments
 (0)