How to turn off the showing of last committer's name and date in new version of Qt Creator 10.0.2

Whenever I am hovering on top of any line Qt Creator 10.0.2 shows the name of the committer and the date which is disturbing for me: Is it possible to turn this off? If so can somebody point how to turn this off? >Solution : You can toggle it in settings here:

How to make QtCreator CMake build depend on another CMake project?

I have a CMake project that produces a static library. It compiles fine in QtCreator and produces the library in build dir. The CMakeLists.txt for the static library looks like this: cmake_minimum_required(VERSION 3.5) project(mystaticlib VERSION 0.1 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) file(GLOB mystaticlib_SRC "src/**.cpp") add_library( mystaticlib STATIC ${mystaticlib_SRC} ) target_include_directories( mystaticlib PRIVATE include/mystaticlib INTERFACE… Read More How to make QtCreator CMake build depend on another CMake project?