Qt creator -- turn off warnings for gint, etc
-
Make the location of the relevant headers known to creator and include them properly in your code. Creator should not mind any types it sees the headers for.
-
cbrake: You will have to edit your .pro-File.
We try hard to not break things for comandline users. So creator relies heavily on the buildsystem used in the project (usally qmake with its .pro-files).
-
This is actually a autotools project, so there is no .pro file. I'm just using qt-creator as an editor/debugger, and it seems to know how to run Make, etc.
I'm pretty sure this is an Qt Creator editor/indexer warning, not a compiler warning, but I could be wrong.
-
In autotools projects you will need to edit one of the helper files Creator uses. Check *.includes. The Syntax is really simple: Just put one include dir per line.
You should probably want to update the other <PROJECTNAME>* files (leave the one ending in .user alone!), too. The names should be pretty descriptive and the syntax generally is one item per line. Creator's code completion and syntax highlighting will be severly crippled if you do not provide the full information on your project.
-
-
Great that creator works for you!