Download QtCreatorIt is available under free/open-source license here. Installing QtCreatorA tutorial on installing QtCreator on Ubuntu is available here. Set local build variablesCreate a file called local_overrides.pri in the same folder as common.pri, and put whatever local adaptions you need there. This allows you to make changes and test stuff without comiting it to git. It is included like this: Note that ANY valid qmake syntax can be put in this file as it is simply included, so care should be taken not to introduce mistakes. A common feature often put in local_overrides.pri are compile time switches to turn on/off features for the build to save time or avoid dependencies. Here is an example: Tips & tricksLet the compiler help you. The pedantic warnings should be enabled by default in the build configuration so that your compiler will find potential problems and weaknesses in your code for you, and over time, help you to help your self, just like this guy: The build configuration in OctoMY™ is already set to a rather strict setting by default, so all you have to do is make sure that the number of warnings did not increase before you submit your code. |