3 Star 0 Fork 0

mirrors_atoulme/soapbox-ios

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Project.swift 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
Dean Eigenmann 提交于 2021-05-13 19:49 . redesign/room (#533)
import ProjectDescription
let settings = Settings(
base: [
"ENABLE_BITCODE": SettingValue.string("NO"),
"CURRENT_PROJECT_VERSION": SettingValue.string(""),
"MARKETING_VERSION": SettingValue.string("0.1"),
],
configurations: [
CustomConfiguration.debug(
name: "debug",
settings: ["CODE_SIGN_ENTITLEMENTS": SettingValue.string("./Entitlements/debug.entitlements")],
xcconfig: "./Configurations/Debug.xcconfig"
),
CustomConfiguration.release(
name: "release",
settings: ["CODE_SIGN_ENTITLEMENTS": SettingValue.string("./Entitlements/release.entitlements")],
xcconfig: "./Configurations/Release.xcconfig"
),
]
)
let project = Project(
name: "Soapbox",
targets: [
Target(
name: "Soapbox",
platform: .iOS,
product: .app,
bundleId: "$(PRODUCT_BUNDLE_IDENTIFIER)",
deploymentTarget: .iOS(targetVersion: "13.0", devices: .iphone),
infoPlist: "Info.plist",
sources: ["Sources/**"],
resources: ["Resources/**", "Configurations/*", "Entitlements/*", "Assets.xcassets", "Localization/**/*.strings"],
dependencies: [
.cocoapods(path: "."),
.xcFramework(path: "./WebRTC.xcframework"),
],
settings: settings
),
Target(
name: "SoapboxTests",
platform: .iOS,
product: .unitTests,
bundleId: "app.social.soapboxTests",
infoPlist: "Tests.plist",
sources: "Tests/**",
dependencies: [
.target(name: "Soapbox"),
]
),
Target(
name: "SoapboxUITests",
platform: .iOS,
product: .uiTests,
bundleId: "app.social.soapboxUITests",
infoPlist: "UITests.plist",
sources: "UITests/**",
dependencies: [
.target(name: "Soapbox"),
]
),
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_atoulme/soapbox-ios.git
git@gitee.com:mirrors_atoulme/soapbox-ios.git
mirrors_atoulme
soapbox-ios
soapbox-ios
master

搜索帮助