24 lines
510 B
Swift
24 lines
510 B
Swift
// swift-tools-version:5.1
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "ARVideoKit",
|
|
platforms: [
|
|
.iOS(.v11)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "ARVideoKit",
|
|
targets: ["ARVideoKit"]),
|
|
],
|
|
dependencies: [ ],
|
|
targets: [
|
|
.target(
|
|
name: "ARVideoKit",
|
|
dependencies: [],
|
|
path: "ARVideoKit")
|
|
]
|
|
)
|