10 lines
275 B
Groovy
10 lines
275 B
Groovy
|
plugins {
|
||
|
id 'java-library'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation platform(projects.cavisCommonPlatform)
|
||
|
implementation projects.cavisNative.cavisNativeBlas
|
||
|
implementation "org.bytedeco:javacpp"
|
||
|
implementation group: "org.bytedeco", name: 'openblas-platform'
|
||
|
}
|