Hi,
Is it possible to have multiple libraries in the same prebuilt library block
model {
repositories {
libs(PrebuiltLibraries) {
someLib {
headers.srcDir "<path>"
binaries.withType(StaticLibraryBinary) {
def libName = targetPlatform.operatingSystem.windows ? 'util.lib' : 'libutil.a'
// would this be possible to have multiple files here?
staticLibraryFile = file("<path>/${libName}")
//something like staticLibraryFiles = files("...")
}
}
}