Skip to content
Advertisement

Tag: qt-creator

Qt creator platform codegen flags

Seems Qt creator “platform codegen flags” does not take effect (Tools->Options…->Build&Run->Compillers). Mentioned there “-std=c++11” flag however it was not added to Makefile. Also added g++-5 there – also no effect: CXX = g++ CXXFLAGS = -pipe -g -Wall -W $(DEFINES) Should be: CXX = g++-5 CXXFLAGS = -pipe -g -Wall -W $(DEFINES) -std=c++11 How to correctly add flags there. Answer

QtCreator – start external tool in an interactive bash

A while ago I discovered that you can make QtCreator call external tools directly from within the IDE and pass various arguments to those via the Tool->External. I find this pretty convenient however I’m currently struggling with the issue of starting a terminal-based application in an interactive bash. I am using Lubuntu 12.04 with QtCreator 2.5.2. Usually you can start

Completely remove Qt environment?

How to completely remove Qt environment? I installed Qt Creator Integrated Development from the Ubuntu Software Center,then I compiled and installed Qt 4.8.6 .There were few errors when I try to compile an Application. I Uninstalled / Removed via the Ubuntu Software Center. But when I tried to install QT 5.3 I can see the Qt 4.8 kit and recently

Advertisement