build: add `CNIOWindows` to Package.swift (#1638)
This adds the CNIOWindows module to the package definition which is needed for Windows. Co-authored-by: Cory Benfield <lukasa@apple.com>
This commit is contained in:
parent
c141d91338
commit
b6e53edb49
|
@ -21,6 +21,7 @@ var targets: [PackageDescription.Target] = [
|
|||
.target(name: "NIO",
|
||||
dependencies: ["CNIOLinux",
|
||||
"CNIODarwin",
|
||||
"CNIOWindows",
|
||||
"NIOConcurrencyHelpers",
|
||||
"CNIOAtomics",
|
||||
"CNIOSHA1"]),
|
||||
|
@ -29,6 +30,7 @@ var targets: [PackageDescription.Target] = [
|
|||
.target(name: "CNIOSHA1", dependencies: []),
|
||||
.target(name: "CNIOLinux", dependencies: []),
|
||||
.target(name: "CNIODarwin", dependencies: []),
|
||||
.target(name: "CNIOWindows", dependencies: []),
|
||||
.target(name: "NIOConcurrencyHelpers",
|
||||
dependencies: ["CNIOAtomics"]),
|
||||
.target(name: "NIOHTTP1",
|
||||
|
|
Loading…
Reference in New Issue