Added imxmi infra
This commit is contained in:
parent
5a16783d43
commit
ea5d955a4d
13
build.gradle
13
build.gradle
|
@ -79,10 +79,21 @@ project(":lib-basicwd") {
|
|||
}
|
||||
}
|
||||
|
||||
project(":main-gdxapp") {
|
||||
project(":lib-imxmi") {
|
||||
apply plugin: "java-library"
|
||||
dependencies {
|
||||
api project(":lib-basicwd")
|
||||
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
|
||||
}
|
||||
tasks.named('test') {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
}
|
||||
|
||||
project(":main-gdxapp") {
|
||||
apply plugin: "java-library"
|
||||
dependencies {
|
||||
api project(":lib-imxmi")
|
||||
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
||||
api "io.github.spair:imgui-java-binding:$spairVersion"
|
||||
api "io.github.spair:imgui-java-lwjgl3:$spairVersion"
|
||||
|
|
7
lib-imxmi/build.gradle
Normal file
7
lib-imxmi/build.gradle
Normal file
|
@ -0,0 +1,7 @@
|
|||
sourceCompatibility = appJvmCode
|
||||
[compileJava, compileTestJava]*.options*.encoding = appEncoding
|
||||
|
||||
sourceSets.main.java.srcDirs = [ "src/main/"]
|
||||
sourceSets.main.resources.srcDirs = [ "src/resources/" ]
|
||||
sourceSets.test.java.srcDirs = [ "src/test/"]
|
||||
sourceSets.test.resources.srcDirs = [ "src/test-resources/" ]
|
|
@ -0,0 +1,5 @@
|
|||
package love.distributedrebirth.imxmi;
|
||||
|
||||
public class ImXmiSetup {
|
||||
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
package love.distributedrebirth.imxmi.lang;
|
||||
|
||||
public class ImButtonˣᴹᴵ {
|
||||
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
package love.distributedrebirth.imxmi.lang;
|
||||
|
||||
public class ImFrameˣᴹᴵ {
|
||||
|
||||
}
|
|
@ -1 +1 @@
|
|||
include 'main-gdxapp-desktop', 'main-gdxapp', 'lib-bassboonyd', 'lib-numberxd', 'lib-unicodezd', 'lib-basicwd'
|
||||
include 'main-gdxapp-desktop', 'main-gdxapp', 'lib-bassboonyd', 'lib-numberxd', 'lib-unicodezd', 'lib-basicwd', 'lib-imxmi'
|
Loading…
Reference in a new issue