Configure "qtnamespace" flags?
-
Hello,
The instructions for building the Qt / Eclipse integration says that Qt must be configured with:
"./configure -qtnamespace QtCppIntegration -qtlibinfix CppIntegration"
I see the man page at http://doc.qt.nokia.com/4.7-snapshot/configure-options.html , but I still don't understand:
What exactly does this do?
Why/when I would need to use these flags in other cases?
Could regular Qt-based code still use the Qt built like this?
Why, in this case, the particular names "QtCppIntegration" and "CppIntegration"?
Thank you
-
qtnamespace compiles Qt into a namespace and qtlibinfix modifies the names of the Qt dlls. For example: qtlibinfix renames all the Qt dlls with the infix you have chosen, for example to QtGuiCppIntegration.dll and qtnamespace wraps all of the Qt code in the namespace QtCppIntegration
You can see an example of another usecase for qtlibinfix "here ":http://developer.qt.nokia.com/faq/answer/how_can_i_have_several_qt_versions_installed_under_winntsystem32
Yes
The reason there is a difference between the naming of the options "QtGuiCppIntegration" and "CppIntegration" is simply that if qtlibinfix had the option "QtCppIntegration then the resulting dll names would be e.g "QtGuiQtCppIntegration" which does not look as nice as QtGuiCppIntegration
-
Thank you, sigrid.
Three followup questions:
You said that code that was written for normal Qt can be used with Qt built like this, but I assume that some changes must be made to some makefile /.pro file... Correct? If so, is there a simple example somewhere?
Does anyone know why the Eclipse integration needed these flags?
For the Eclipse integration, was the choice of "CppIntegration" arbitrary, or was that exact name needed to integrate with some other library?
Thank you