Slackbot
02/08/2024, 5:18 PMWill Jackson
02/08/2024, 10:38 PMtasks.register('copySharedObjectsToInstallDir', Copy) { copyTask ->
tasks.named('installTest').configure {
it.dependsOn(copyTask)
copyTask.into it.installDirectory
}
from configurations.named('linkDebug')
}
not pretty, but it works- surely there's a better way, though?daniel
02/09/2024, 7:01 PM