Add xcode-addon to the list of internal dependencies. (#16)
This commit is contained in:
committed by
Ilya Matveev
parent
950d677053
commit
7cfdf3d0be
@@ -28,6 +28,7 @@ class AppleConfigurablesImpl(
|
||||
|
||||
private val sdkDependency = this.targetSysRoot!!
|
||||
private val toolchainDependency = this.targetToolchain!!
|
||||
private val xcodeAddonDependency = this.additionalToolsDir!!
|
||||
|
||||
override val absoluteTargetSysRoot: String get() = when (xcodePartsProvider) {
|
||||
is XcodePartsProvider.Local -> when (target) {
|
||||
@@ -51,7 +52,7 @@ class AppleConfigurablesImpl(
|
||||
|
||||
override val dependencies get() = super.dependencies + when (xcodePartsProvider) {
|
||||
is XcodePartsProvider.Local -> emptyList()
|
||||
XcodePartsProvider.InternalServer -> listOf(sdkDependency, toolchainDependency)
|
||||
XcodePartsProvider.InternalServer -> listOf(sdkDependency, toolchainDependency, xcodeAddonDependency)
|
||||
}
|
||||
|
||||
private val xcodePartsProvider = if (InternalServer.isAvailable) {
|
||||
|
||||
Reference in New Issue
Block a user