project.yml (1064B)
1 name: Radroots 2 3 options: 4 deploymentTarget: 5 iOS: "18.0" 6 7 configs: 8 Debug: debug 9 Release: release 10 11 packages: 12 RadrootsKit: 13 url: git@github.com:radrootslabs/apple_kit.git 14 branch: master 15 16 targets: 17 Radroots: 18 type: application 19 platform: iOS 20 deploymentTarget: "18.0" 21 sources: 22 - path: Radroots 23 excludes: 24 - Info.plist 25 - Frameworks 26 settings: 27 base: 28 SWIFT_VERSION: 6.0 29 INFOPLIST_FILE: Radroots/Info.plist 30 configFiles: 31 Debug: Radroots/Config/Debug.xcconfig 32 Release: Radroots/Config/Release.xcconfig 33 dependencies: 34 - framework: Radroots/Frameworks/RadrootsFFI.xcframework 35 embed: false 36 - package: RadrootsKit 37 preBuildScripts: 38 - name: Generate git SHA xcconfig 39 basedOnDependencyAnalysis: false 40 script: | 41 GIT_SHA=$(git rev-parse --short HEAD || echo "unknown") 42 echo "GIT_SHA = $GIT_SHA" > "$SRCROOT/Radroots/radroots.git.xcconfig" 43 schemes: 44 Radroots: 45 build: 46 targets: 47 Radroots: all