Files
T
2017-08-01 18:40:40 +02:00

29 lines
753 B
YAML

name: GeneratedProject
targets:
- name: TestProject
type: application
platform: iOS
sources: TestProject
settings:
INFOPLIST_FILE: TestProject/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: com.test
dependencies:
- target: MyFramework
postbuildScripts:
- name: Swiftlint
script: |
if which swiftlint >/dev/null; then
swiftlint
else
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi
- name: MyFramework
type: framework
platform: iOS
sources: MyFramework
settings:
INFOPLIST_FILE: MyFramework/Info.plist
postbuildScripts:
- name: Swiftlint
path: scripts/swiftlint.sh