Skip to content

Commit

Permalink
Add Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
benlau committed Aug 25, 2022
1 parent ccc82b4 commit c039e30
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// swift-tools-version:5.3
import PackageDescription

let package = Package(
name: "opencv2",
platforms: [
.macOS(.v10_12)
],
products: [
.library(
name: "opencv2",
targets: ["opencv2"])
],
targets: [
.binaryTarget(name: "opencv2",
url: "https://github.com/oursky/opencv/releases/download/4.5.5/opencv2.xcframework.zip",
checksum: "54cfa730bc016412200fe7a190e88aedfaf8b72e5faba9f0f83d250276aaefc0"
)
]
)

0 comments on commit c039e30

Please sign in to comment.