Skip to content

Commit

Permalink
Enable SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
danilobecke committed Nov 8, 2021
1 parent 6c7d5f3 commit 8edd7dd
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
xcuserdata/
DerivedData/
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
19 changes: 19 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// swift-tools-version:5.5

import PackageDescription

let package = Package(
name: "RiskifiedBeacon",
platforms: [ .iOS(.v13) ],
products: [
.library(
name: "RiskifiedBeacon",
targets: [ "RiskifiedBeacon" ]),
],
dependencies: [],
targets: [
.binaryTarget(
name: "RiskifiedBeacon",
path: "RiskifiedBeacon.xcframework"),
]
)

0 comments on commit 8edd7dd

Please sign in to comment.