Created
May 14, 2018 07:41
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: "website", | |
schemes: [ | |
/* Project schemes are defined here */ | |
Scheme(name: "website", | |
shared: true, | |
buildAction: BuildAction(targets: ["website"])), | |
], | |
settings: Settings(base: [:], | |
debug: Configuration(settings: [:], | |
xcconfig: "Debug.xcconfig")), | |
targets: [ | |
Target(name: "website", | |
platform: .ios, | |
product: .app, | |
bundleId: "com.xcbuddy.website", | |
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(["./Resousrces /**/ *"])]) */ | |
]), | |
]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment