QT6 build
#480
Replies: 2 comments
-
That's very good news, thanks |
Beta Was this translation helpful? Give feedback.
0 replies
-
I just added my QT6 code to the tuxguitar-next branch:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Since QT seems to be more modern and better maintained than SWT and JFX, it might make sense to get TuxGuitar running again with QT.
First steps have already been made here:
#20
OmixVisualization/qtjambi#157
I was able to build the Hello World example of QtJambi on Debian unstable (Sid) currently shipping QT 6.6.2 with the following:
pom.xml:
src/main/java/hello/world/HelloWorld.java:
Install Maven, Java and QT6 libs:
$ sudo apt install default-jre maven libqt6core6 libqt6gui6 libqt6widgets6
Build:
$ mvn package
Run:
$ java -cp ~/.m2/repository/io/qtjambi/qtjambi/6.6.2/qtjambi-6.6.2.jar:target/hello-world-0.1.jar HelloWorld
Beta Was this translation helpful? Give feedback.
All reactions