Skip to content

Instantly share code, notes, and snippets.

@drawers
Last active January 29, 2023 21:35
Embed
What would you like to do?
private fun compilation(vararg source: SourceFile) = KotlinCompilation().apply {
sources = source.toList()
symbolProcessorProviders = listOf(IntSummableProcessorProvider())
workingDir = temporaryFolder.root
inheritClassPath = true
verbose = false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment