-
Notifications
You must be signed in to change notification settings - Fork 37
/
build.gradle.kts
43 lines (39 loc) · 1.41 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
plugins {
org.openrndr.extra.convention.`kotlin-multiplatform`
alias(libs.plugins.kotest.multiplatform)
}
val embedShaders = tasks.register<EmbedShadersTask>("embedShaders") {
inputDir.set(file("$projectDir/src/shaders/glsl"))
outputDir.set(layout.buildDirectory.dir("generated/shaderKotlin"))
defaultPackage.set("org.openrndr.extra.noise.filters")
defaultVisibility.set("internal")
namePrefix.set("noise_")
}.get()
kotlin {
kotlin.sourceSets.getByName("commonMain").kotlin.srcDir(embedShaders.outputDir)
sourceSets {
val commonMain by getting {
dependencies {
implementation(libs.openrndr.math)
implementation(libs.openrndr.shape)
implementation(libs.openrndr.draw)
implementation(project(":orx-hash-grid"))
implementation(project(":orx-parameters"))
implementation(project(":orx-shader-phrases"))
}
}
val jvmTest by getting {
dependencies {
implementation(libs.kotest.assertions)
implementation(libs.kotest.framework.engine)
}
}
val jvmDemo by getting {
dependencies {
implementation(project(":orx-hash-grid"))
implementation(project(":orx-noise"))
implementation(project(":orx-jvm:orx-gui"))
}
}
}
}