tags:

views:

272

answers:

1

I've had no luck getting the rbuic UI compiler (from qt4-qtruby-1.4.10 release) to produce any output on windows. Even running rbuic -h does not work. I'm guessing the output is going somewhere other than stdout... Any suggestions?

A: 

I installed my qt environment according to this and use rbuic according to this. I have to type rbuic4 so for example:

rbuic4 -h

outputs the help. rbuic outputs default to stdout, so if you want to redirect the output to a file:

rbuic4 sampledialog.ui -o sampledialog_ui.rb

Does the job. Hope this helps.

Deadolus
Same here. And yes, the exact command line is rbuic4, not rbuic; i should have been more precise.
fakeleft