Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I'm trying to export my project to C++ code using uic command (uic -o file.ui) but it just keeps the cmd open and doesn't do anything even after 30 minutes, what am I doing wrong?
Hi, welcome to the forum.
-o option is for specifying output and you're giving it the input ui file. It should be something like uic file.ui -o ui_file.h.
-o
uic file.ui -o ui_file.h
Thanks! I was reading the documentation as uic -o name.ui facepalm