mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-08 14:15:17 +00:00
* Adds Object-api support to swift * Fixed indentation issues * Removed indentation within namespaces
22 lines
526 B
Swift
22 lines
526 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: "FlatBuffers.Test.Swift",
|
|
platforms: [
|
|
.iOS(.v11),
|
|
.macOS(.v10_14),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../../swift/")
|
|
],
|
|
targets: [
|
|
.target(name: "SwiftFlatBuffers"),
|
|
.testTarget(
|
|
name: "FlatBuffers.Test.SwiftTests",
|
|
dependencies: ["FlatBuffers"]),
|
|
]
|
|
)
|