Janosimas
Janosimas

Reputation: 578

Qt creator not populating issues tab

The issues tab is never populated, the 'compile output' tab is working fine, I can see all warnings and errors.

I have tried cmake and qmake projects, compiling with gcc and clang.

Full working projects and just "main" empty projects.

I'm using Qt Creator 4.0.2

Upvotes: 4

Views: 865

Answers (1)

sand-box
sand-box

Reputation: 36

I had the same problem on Ubuntu 14.04, Qt Creator 4.0.x. I solved it by using the latest cmake version (currently 3.6.1).

You don't need to install latest cmake in the system, if you don't want to / don't have permissions. It also worked by downloading latest cmake binary tar, extracting it somewhere, and referencing it in qtcreator (Tools - Options - Build&Run - CMake - Add...) and setting it as default in the used kit (Tools - Options - Build&Run - Kits - CMake-Tool).

Upvotes: 2

Related Questions