Created
May 16, 2021 22:15
-
-
Save janodev/cc4fc2cdfbeb2d1b18c964e7e95ff0db to your computer and use it in GitHub Desktop.
Xcodegen project
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
name: myproject | |
options: | |
bundleIdPrefix: com.myproject | |
usesTabs: false | |
indentWidth: 4 | |
tabWidth: 4 | |
createIntermediateGroups: true | |
deploymentTarget: | |
iOS: "14.5" | |
settings: | |
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED: YES | |
IPHONEOS_DEPLOYMENT_TARGET: 14.5 | |
packages: | |
SomeDependencyDynamic: | |
url: [email protected]:foo/mydependency.git | |
from: 1.0.0 | |
targets: | |
Myproject: | |
dependencies: | |
- package: SomeDependencyDynamic | |
platform: iOS | |
scheme: | |
testTargets: | |
- MyprojectTests | |
settings: | |
CURRENT_PROJECT_VERSION: 1 | |
INFOPLIST_FILE: targets/main/Info.plist | |
PRODUCT_BUNDLE_IDENTIFIER: com.myproject | |
PRODUCT_NAME: Myproject | |
sources: | |
- sources/main | |
- bundleaccessor/main | |
type: framework | |
postCompileScripts: | |
- script: swiftlint | |
name: Swiftlint | |
MyprojectTests: | |
dependencies: | |
- package: SomeDependencyDynamic | |
- target: MyProject | |
platform: iOS | |
settings: | |
INFOPLIST_FILE: targets/tests/Info.plist | |
PRODUCT_BUNDLE_IDENTIFIER: com.myproject.tests | |
TEST_HOST: | |
sources: | |
- sources/tests | |
- bundleaccessor/tests | |
type: bundle.unit-test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment