Where in Qt Creator do I pass arguments to a compiler?
It isn't really that obvious.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Depending on your build system it's either in your qmake project file(.pro, standard for new projects) or in one of the CMake files (CMakeLists.txt, used by KDE and several other projects). Using .pro:
Using CMake:
|
|||||
|
|
To add compiler flags, open your .pro file and add a line like this:
For standard flags like debug vs. release etc. you should try to use the predefined qmake options (see QMake documentation) for the sake of platform and compiler-independency, as QMake will map them to the compiler-specific flags. |
|||||
|
|
In your Qmake project file probably |
|||||||||
|
|
If your intention is to precompile some source code you can do like this: /A/ In your .pro file you can add a line like this:
/B/ In you .cpp or .h file you can use it like this
|
|||
|
|
