Moved NativeApp to an extra project
This commit is contained in:
parent
0ce74a0688
commit
cf6650e3e8
|
@ -0,0 +1,29 @@
|
|||
plugins {
|
||||
kotlin("multiplatform")
|
||||
}
|
||||
|
||||
|
||||
kotlin {
|
||||
targetHierarchy.default()
|
||||
|
||||
linuxX64()
|
||||
mingwX64()
|
||||
macosX64()
|
||||
macosArm64()
|
||||
|
||||
|
||||
sourceSets {
|
||||
|
||||
val nativeMain by getting {
|
||||
dependencies {
|
||||
implementation(project(":fints4k"))
|
||||
|
||||
implementation("com.github.ajalt.clikt:clikt:3.5.4")
|
||||
|
||||
// only needed for writing files to output
|
||||
implementation("com.soywiz.korlibs.korio:korio:3.4.0")
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -27,3 +27,7 @@ include "CorsProxy"
|
|||
findProject(":CorsProxy")?.projectDir = file("SampleApplications/CorsProxy")
|
||||
findProject(":CorsProxy")?.name = "CorsProxy"
|
||||
|
||||
include("NativeApp")
|
||||
findProject(":NativeApp")?.projectDir = file("SampleApplications/NativeApp")
|
||||
findProject(":NativeApp")?.name = "NativeApp"
|
||||
|
||||
|
|
Loading…
Reference in New Issue