We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc1a590 commit ce71e4dCopy full SHA for ce71e4d
imgui-lwjgl3/build.gradle
@@ -21,7 +21,11 @@ dependencies {
21
implementation project(':imgui-binding')
22
}
23
24
-
+task startExample(type: JavaExec, dependsOn: build) {
25
+ main = 'ImGuiGlfwExample'
26
+ classpath = sourceSets.test.runtimeClasspath
27
+ jvmArgs = ['-Djava.library.path=../bin', '-Dimgui.library.name=imgui-java64', '-Dorg.lwjgl.librarypath=./lwjgl-libs']
28
+}
29
30
task sourcesJar(type: Jar, dependsOn: classes) {
31
archiveClassifier.set('sources')
0 commit comments