Distribute shared library .debug files.

This commit is contained in:
Peter Johnson
2016-10-21 23:40:56 -07:00
parent 06a40680aa
commit aad1266a94

View File

@@ -145,6 +145,12 @@ def cameraserverZipTask = { project ->
from(binary.sharedLibraryFile) {
into getPlatformPath(binary)
}
def debugFile = new File(binary.sharedLibraryFile.absolutePath + ".debug")
if (debugFile.exists()) {
from(debugFile) {
into getPlatformPath(binary)
}
}
}
}
}