Created
May 14, 2018 07:41
-
-
Save pepicrft/2511fb1e29f1a8a2d92e531dec67a9c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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