Hello
My build.gradle contains a NativeExecutableSpec and I need to get the absolute or relative path of the executable at runtime. How could I get the path of the TestApp executable in the tasks.withType(RunTestExecutable) below ?
model {
components {
TestApp(NativeExecutableSpec) {
sources {
cpp {
source {
srcDir 'src'
include 'TestApp.cpp'
}
}
}}}}
tasks.withType(RunTestExecutable) {
}