kotlin-graphics / imgui

Bloat-free Immediate Mode Graphical User interface for JVM with minimal dependencies (rewrite of dear imgui)
MIT License
594 stars 37 forks source link

./gradlew eclipse does not see the link #165

Closed SprayDown closed 3 years ago

SprayDown commented 3 years ago

eclipse imgui error

build :

dependencies { def dependency = { id -> modImplementation id shadow id }

minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

// Fabric API
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

// ImGUI
    ext{
    imguiVersion = "-SNAPSHOT"
}
["gl", "glfw", "core"].each {
    implementation("com.github.kotlin-graphics.imgui:imgui-$it:$imguiVersion") {
        exclude group: "org.lwjgl"
    }
}

compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: '1.3.70'

dependency "com.github.ZeroMemes:Alpine:1.9"
dependency 'com.g00fy2:versioncompare:1.3.7'
dependency "org.joml:joml:1.10.0"
elect86 commented 3 years ago

Hey, sorry for the late reply

can you provide a public repo to try it out?