Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
toasterofbread committed Nov 24, 2024
1 parent 9c89444 commit 413fa4d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,15 @@ kotlin {

kjna {
generate {
include_dirs += listOf(current_platform.getNativeDependenciesDir(project).resolve("include").absolutePath.replace("\\", "/"))
include_dirs +=
listOf(
current_platform.getNativeDependenciesDir(project).resolve("include").absolutePath.replace("\\", "/"),
"C:\\cygwin\\usr\\include\\gtk-3.0"
)
parser_include_dirs +=
listOf(
"/usr/include/linux/",
"/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/",
"C:\\cygwin\\usr\\include\\gtk-3.0"
"/usr/lib/gcc/x86_64-pc-linux-gnu/14.1.1/include/"
)

packages(native_targets) {
Expand Down

0 comments on commit 413fa4d

Please sign in to comment.