mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* 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
27 lines
512 B
Swift
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"]
|
|
)
|
|
]
|
|
)
|