For a particular project, QtCreator stores information about the build configurations for each kit that project uses in its *.creator.user
file. Some kits are automatically detected; kits can also be manually defined by going to Options-->Build & Run-->Kits
and selecting Add
. However, I can't figure out where QtCreator actually stores information about available kits. Deleting all *.creator.user
files that make use of a particular kit does not remove the kit from the list of kits, and I can't find the names of any custom kits I've defined anywhere in the Qt folder on my computer (I'm using Qt5 RC2, so I'm looking in Qt5/QtCommercial5.0.0-rc2/Tools/QtCreator/share
and subdirectories thereof). Any suggestions?
标签:
qt-creator
相关问题
- How can I listen to a C++ signal from QML?
- How to setup Qt Creator to work with CMake on Mac
- switch may fall through (no it may not)
- How to solve module “”QtQuick.Controls“ version 2.
- CMake, QtCreator and header files
相关文章
- How to make QtLinguist shipped with Qt 5.9.1 work?
- Qt Creator fails to start debugging on Mac
- How to obtain debug/release conditional compiling
- signals sent by qtcreator on “stop”
- C++ Qt framework: qmake exits with error code 2, c
- Can __FILE__ and __LINE__ be made linkable when pr
- Qt Creator problem. UI changes not showing when pr
- How to configure qt creator to show C++ codes rath
The SDK stores a set of files in
$CREATOR_INSTALL_DIR/share/QtProject/qtcreator
. These are used by everybody using this instance of creator.The user-specific files are in your home directory in
~/.config/QtProject/qtcreator
(or%APPDATA%/QtProject/qtcreator
on windows, don't know about Mac).The kits are in a file called
profiles.xml
(I first called this whole thing profiles, but since that conflicts with the.pro
-filesqmake
uses it got renamed). Toolchains are intoolchains.xml
, Qt versions inqtversions.xml
.The
.user
-files only contain data for the project it is related to. Basically everything set in "Projects" mode ends up in the.user
file.