Skip to content

Instantly share code, notes, and snippets.

@pepicrft
Created May 14, 2018 07:41
Show Gist options
  • Save pepicrft/2511fb1e29f1a8a2d92e531dec67a9c2 to your computer and use it in GitHub Desktop.
Save pepicrft/2511fb1e29f1a8a2d92e531dec67a9c2 to your computer and use it in GitHub Desktop.
import ProjectDescription
let project = Project(name: "HelloWorld",
schemes: [
/* Project schemes are defined here */
Scheme(name: "HelloWorld",
shared: true,
buildAction: BuildAction(targets: ["HelloWorld"])),
],
settings: Settings(base: [:],
debug: Configuration(settings: [:],
xcconfig: "Debug.xcconfig")),
targets: [
Target(name: "HelloWorld",
platform: .ios,
product: .app,
bundleId: "com.xcbuddy.HelloWorld",
infoPlist: "Info.plist",
dependencies: [
/* Target dependencies can be defined here */
/* .framework(path: "/path/framework.framework") */
],
settings: nil,
buildPhases: [
.sources([.include(["./Sources/**/*.swift"])]),
/* Other build phases can be added here */
/* .resources([.include(["./Resources /**/ *"])]) */
]),
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment