Closed Kesanov closed 3 years ago
Since you're building a native application, you don't need JVM binaries.
You should remove this,
// For jvm binaries
implementation("com.kotlin-imgui:cimgui-jvmlinuxx64:$imguiVersion")
implementation("com.kotlin-imgui:cimgui-jvmmacosx64:$imguiVersion")
implementation("com.kotlin-imgui:cimgui-jvmmingwx64:$imguiVersion")
You'll want to add github repo to get kgl.
maven("https://maven.pkg.github.com/Dominaezzz/kgl") {
credentials {
username = System.getenv("GITHUB_USER") // Your GitHub username.
password = System.getenv("GITHUB_TOKEN") // A GitHub token with `read:packages`.
}
}
Also, 0.3-RC1
is not a valid version of kgl. Try using 0.1.11
.
Would you consider creating a self contained hello-world template in its own github repo?
Maybe, when I find time. Create a separate issue for this.
Looks like you managed to build this in the other issue.
I have created a new native project with intelli and added imgui dependencies:
But building the project on windows ends up with the following error message:
What am I doing wrong? Would you consider creating a self contained hello-world template in its own github repo? Thx!