mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-10 07:13:28 +01:00
22 lines
426 B
Swift
22 lines
426 B
Swift
import ProjectDescription
|
|
|
|
let setup = Setup(
|
|
require: [
|
|
.precondition(
|
|
.swiftVersion("5.3.2"),
|
|
.xcodeVersion("12.4", "12D4e"))
|
|
],
|
|
run: [
|
|
.homebrew(packages: [
|
|
"rustup-init",
|
|
"rust",
|
|
"cargo-c",
|
|
"swiftformat",
|
|
"swiftlint",
|
|
"swiftgen",
|
|
"swift-doc"
|
|
]),
|
|
.mint()
|
|
]
|
|
)
|