mirror of https://github.com/buresdv/Cork
15 lines
364 B
Swift
15 lines
364 B
Swift
import ProjectDescription
|
|
|
|
let config: Config = .init(
|
|
project: .tuist(
|
|
compatibleXcodeVersions: .list([
|
|
.upToNextMajor(.init(16, 0, 0)),
|
|
.upToNextMajor(.init(26, 0, 0))
|
|
]),
|
|
swiftVersion: .init(6, 0, 0),
|
|
plugins: .init(),
|
|
generationOptions: .options(),
|
|
installOptions: .options()
|
|
)
|
|
)
|