bc941269f0
- Smaller gradle scripts. - More structure in sample projects. - Simplified build/run. - Added gradle to the rest two samples. - Almost removed all sh scripts. - Gradle now works only inside of build directory. - Fixed READMEs according to the new changes.
14 lines
337 B
Groovy
14 lines
337 B
Groovy
apply plugin: 'konan'
|
|
|
|
konanInterop {
|
|
tensorflow {
|
|
includeDirs "${System.getProperty("user.home")}/.konan/third-party/tensorflow/include"
|
|
}
|
|
}
|
|
|
|
konanArtifacts {
|
|
Tensorflow {
|
|
useInterop "tensorflow"
|
|
linkerOpts "-L${System.getProperty("user.home")}/.konan/third-party/tensorflow/lib -ltensorflow"
|
|
}
|
|
} |