diff --git a/cavis-full/build.gradle b/cavis-full/build.gradle index e25089501..7250b7861 100644 --- a/cavis-full/build.gradle +++ b/cavis-full/build.gradle @@ -36,7 +36,7 @@ dependencies { } } */ - if(withCpu()) api project(path: ":cavis-native:cavis-native-lib", configuration: "implementation") + if(withCpu()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cpuSupportCompileClasspath") //if(withCuda()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cudaSupportCompileClasspath") /* diff --git a/cavis-native/cavis-native-lib/build.gradle b/cavis-native/cavis-native-lib/build.gradle index 8614fc9df..e2a72cb9c 100644 --- a/cavis-native/cavis-native-lib/build.gradle +++ b/cavis-native/cavis-native-lib/build.gradle @@ -431,6 +431,7 @@ chipList.each { thisChip -> chipList.each{ thisChip -> configurations { implementation.extendsFrom findByName("${thisChip}SupportImplementation") + findByName("${thisChip}SupportImplementation").setCanBeConsumed(true) } }