Skip to content
This repository was archived by the owner on Nov 25, 2025. It is now read-only.

BinaryBirds/build-kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BuildKit (🔨)

A Swift wrapper around common Swift commands.

Usage

Some basic examples:

import BuildKit

let project = Project(path: "~/example")

try project.run(.package(.initialize(.executable)))
try project.run(.package(.update))
try project.run(.package(.generateXcodeProject))

try project.run(.build, flags: [.config(.debug), .stdlib(true)]) 
try project.run(.test, flags: [.parallel])

Install

Just use the Swift Package Manager as usual:

.package(url: "https://github.com/binarybirds/build-kit", from: "1.0.0"),

Don't forget to add "PackageManagerKit" to your target as a dependency:

.product(name: "BuildKit", package: "build-kit"),

That's it.

License

WTFPL - Do what the fuck you want to.

About

A Swift wrapper around common Swift commands.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors