mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
Remove:
```
__LATEST_COMPOSE_RELEASE_VERSION__
__KOTLIN_COMPOSE_VERSION__
System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION")
```
They pollute templates/examples.
Now, all paths where we need to change the version are hardcoded in the script.
Usage:
```
./replace.sh 1.0.0-rc6
```
This script is planned to run on CI
In the future I will add support for changing Kotlin version
45 lines
1.3 KiB
Kotlin
45 lines
1.3 KiB
Kotlin
import org.jetbrains.compose.compose
|
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|
|
|
plugins {
|
|
kotlin("jvm") version "1.5.31"
|
|
id("org.jetbrains.compose") version "1.0.0"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
google()
|
|
}
|
|
|
|
val osName: String = System.getProperty("os.name")
|
|
val os = when {
|
|
osName == "Mac OS X" -> "macos"
|
|
osName == "Linux" -> "linux"
|
|
osName.startsWith("Win") -> "windows"
|
|
else -> throw Error("Unknown OS $osName")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(compose.desktop.currentOs)
|
|
implementation("org.lwjgl:lwjgl:3.2.3")
|
|
implementation("org.lwjgl:lwjgl-glfw:3.2.3")
|
|
implementation("org.lwjgl:lwjgl-opengl:3.2.3")
|
|
implementation("org.lwjgl:lwjgl:3.2.3:natives-$os")
|
|
implementation("org.lwjgl:lwjgl-glfw:3.2.3:natives-$os")
|
|
implementation("org.lwjgl:lwjgl-opengl:3.2.3:natives-$os")
|
|
}
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "MainKt"
|
|
|
|
nativeDistributions {
|
|
appResourcesRootDir.set(project.layout.projectDirectory.dir("xxx"))
|
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
|
packageName = "KotlinJvmComposeDesktopApplication"
|
|
packageVersion = "1.0.0"
|
|
}
|
|
}
|
|
}
|