Skip to content

Commit

Permalink
fix(gradle): Correct working directory
Browse files Browse the repository at this point in the history
to find dependency libraries and executables
  • Loading branch information
ktgw0316 committed Nov 29, 2023
1 parent d7e72a4 commit 76d09e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions linux/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ dependencies {
}
application {
mainClass.set("com.lightcrafts.platform.linux.LinuxLauncher")
tasks.run.get().workingDir = file("products")
}
1 change: 1 addition & 0 deletions macosx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ dependencies {
}
application {
mainClass.set("com.lightcrafts.platform.macosx.MacOSXLauncher")
tasks.run.get().workingDir = file("products")
}
1 change: 1 addition & 0 deletions windows/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ dependencies {
}
application {
mainClass.set("com.lightcrafts.platform.windows.WindowsLauncher")
tasks.run.get().workingDir = file("products")
}

0 comments on commit 76d09e8

Please sign in to comment.