Files
swift-mirror/utils/gen-unicode-data/Package.swift
Alejandro Alonso 3b402f0179 [stdlib] Implement native Unicode.Scalar binary properties (#39597)
* Generate Unicode data for Scalar Binary Properties

* Use native scalar binary property lookup

* Add _BinaryProperties to Scalar Properties

narrow access control

* Upgrade the notice to a warning in UnicodeScalarProperties
2021-11-15 15:20:46 -08:00

27 lines
512 B
Swift

// swift-tools-version:5.4
import PackageDescription
let package = Package(
name: "GenUnicodeData",
platforms: [.macOS(.v10_15)],
targets: [
.target(
name: "GenUtils",
dependencies: []
),
.executableTarget(
name: "GenGraphemeBreakProperty",
dependencies: ["GenUtils"]
),
.executableTarget(
name: "GenNormalization",
dependencies: ["GenUtils"]
),
.executableTarget(
name: "GenScalarProps",
dependencies: ["GenUtils"]
)
]
)