Console input with Qt Creator

I found a solution. With Qt Creator 1.3.0 (on Mac OS X), here is what I had to do : Project->Run settings, check “Run in Terminal” (thanks Ropez) Qt Creator->Preferences : Environnement : General : Terminal : I had to put the whole path to XTerm. For my config, I had to put /usr/x11/bin/xterm -e. … Read more

Where does Qt Creator save its settings?

See QtCreator Quick Tour. Qt Creator creates the following files and directories: QtCreator.db QtCreator.ini qtversion.xml toolChains.xml qtcreator qtc-debugging-helper qtc-qmldump The location depends on the platform. On Linux and other Unix platforms, the files are located in ~/.config/QtProject and ~/.local/share/data/QtProject/qtcreator. On Mac OS, the files are located in ~/.config/QtProject and ~/Library/Application Support/QtProject/Qt Creator. On Windows in … Read more

Qt Creator – Project ERROR: Xcode not set up properly. You may need to confirm the license agreement by running /usr/bin/xcodebuild

>= Xcode 8 In Xcode 8, as Bruce said, this happens when Qt tries to find xcrun when it should be looking for xcodebuild. Open the file: Qt_install_folder/5.7/clang_64/mkspecs/features/mac/default_pre.prf Replace: isEmpty($$list($$system(“/usr/bin/xcrun -find xcrun 2>/dev/null”))) With: isEmpty($$list($$system(“/usr/bin/xcrun -find xcodebuild 2>/dev/null”))) ~> Xcode 8 Before Xcode 8, this problem occurs when command line tools are installed after Xcode … Read more