Skip to content

Instantly share code, notes, and snippets.

@drawers
Last active January 29, 2023 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drawers/8a0e58658454cd74d4ec2dd2d350629c to your computer and use it in GitHub Desktop.
Save drawers/8a0e58658454cd74d4ec2dd2d350629c to your computer and use it in GitHub Desktop.
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