tags:

views:

382

answers:

1
+3  Q: 

Binding Qt to LLVM

What is the best way to create a Qt binding to a language that sits on top of LLVM?

Try to parse the Qt header files and generate an interface to C from that, call the C interface from LLVM? Or maybe try to get SWIG to interface Qt? Or is there a better way?

+2  A: 

Have you looked at the smoke libraries from KDE? They wrap Qt as well.

e8johan
Thank you. I cannot use them directly because they are GPL, but it is still useful to know their approach.
Jules