A few questions about Qt/Win
All questions are regarding Open Source version 4.1.0 for Windows
1. What are the configure options used in the precompiled installer thingy? I know it's release and shared, but what other options are used?
2. If one installs from the installer, and then does configure + build for shared debug; what exactly is rebuilt? Does that remake the tools (qmake, assistant, designer, etc), and/or examples, and/or just the libs?
Thanks,
Bojan
The march of progress:
C:
printf("%10.2f", x);
C++:
cout << setw(10) << setprecision(2) << showpoint << x;
Java:
java.text.NumberFormat formatter = java.text.NumberFormat.getNumberInstance();
formatter.setMinimumFractionDigits(2);
formatter.setMaximumFractionDigits(2);
String s = formatter.format(x);
for (int i = s.length(); i < 10; i++) System.out.print(' ');
System.out.print(s);
Bookmarks