mirror of
				https://github.com/InsanusMokrassar/MicroUtils.git
				synced 2025-10-27 02:07:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			877 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			877 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| plugins {
 | |
|     id "org.jetbrains.kotlin.multiplatform"
 | |
|     id "org.jetbrains.kotlin.plugin.serialization"
 | |
|     id "com.android.library"
 | |
| }
 | |
| 
 | |
| apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
 | |
| 
 | |
| kotlin {
 | |
|     sourceSets {
 | |
|         commonMain {
 | |
|             dependencies {
 | |
|                 api internalProject("micro_utils.ktor.common")
 | |
|                 api internalProject("micro_utils.coroutines")
 | |
|                 api libs.ktor.client
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         linuxX64Main {
 | |
|             dependencies {
 | |
|                 api internalProject("micro_utils.mime_types")
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         mingwX64Main {
 | |
|             dependencies {
 | |
|                 api internalProject("micro_utils.mime_types")
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         linuxArm64Main {
 | |
|             dependencies {
 | |
|                 api internalProject("micro_utils.mime_types")
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |