We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24d6e32 commit 4e305a5Copy full SHA for 4e305a5
1 file changed
src/main/groovy/edu/wpi/first/nativeutils/rules/DependencyConfigRules.groovy
@@ -160,6 +160,9 @@ class DependencyConfigRules extends RuleSource {
160
def nativeBinaries = binaries.findAll { BuildConfigRulesBase.isNativeProject((BinarySpec) it) }
161
nativeBinaries.each { oBinary ->
162
def binary = (NativeBinarySpec) oBinary
163
+ if (!binary.buildable) {
164
+ return
165
+ }
166
def component = binary.component
167
168
def headerConfigurationName = "${config.groupId}${config.artifactId}${config.headerClassifier}".toString()
0 commit comments