Не удается отладить в Qt creator с проектом cmake

Я создал новый простой проект C++ с CMake Build. Когда я устанавливаю точку останова и нажимаю кнопку отладки, я получаю это сообщение:

This does not seem to be a "Debug" build.
Setting breakpoints by file name and line number may fail.

Section .debug_info: Not found.
Section .debug_abbrev: Not found.
Section .debug_line: Not found.
Section .debug_str: Not found.
Section .debug_loc: Not found.
Section .debug_range: Not found.
Section .gdb_index: Not found.
Section .note.gnu.build-id: Found.
Section .gnu.hash: Found.
Section .gnu_debuglink: Not found.

1 ответов


вы можете добавить это аргумент с CMake на Параметры Построения:

-DCMAKE_BUILD_TYPE=Debug

enter image description here