Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gui/gui.pro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lessThan(QT_MAJOR_VERSION, 5): error(requires >= Qt 5 (You used: $$QT_VERSION))
greaterThan(QT_MAJOR_VERSION, 5): error(Qt 6 is not supported via qmake - please use CMake instead)

message("Building the GUI via qmake is deprecated and will be removed in a future release. Please use CMake instead.")
message("Building the GUI via qmake is deprecated and will be removed in Cppcheck 2.16. Please use CMake instead.")

TEMPLATE = app
TARGET = cppcheck-gui
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ cmake --build . --config RelWithDebInfo

### qmake

NOTE: This has been deprecated and will be removed in a future version. Please use CMake instead.
NOTE: This has been deprecated and will be removed in Cppcheck 2.16. Please use CMake instead.

You can use the gui/gui.pro file to build the GUI.

Expand Down
3 changes: 3 additions & 0 deletions releasenotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Release Notes for Cppcheck 2.15

New checks:
- suspiciousFloatingPointCast flags unnecessary floating point casts that cause loss of precision
-

Improved checking:
-
Expand All @@ -14,10 +15,12 @@ Changed interface:

Deprecations:
- Support for Python 2.7 has been deprecated (it went EOL in January 2020) and will be removed in Cppcheck 2.16 - please use Python 3.x instead.
- The already deprecated support for qmake will be removed in Cppcheck 2.16 - please use CMake instead.
-

Other:
- Add support for 'CLICOLOR_FORCE'/'NO_COLOR' environment variables to force/disable ANSI color output for diagnostics.
- Added command-line option `--cpp-header-probe` (and `--no-cpp-header-probe`) to probe headers and extension-less files for Emacs marker (see https://trac.cppcheck.net/ticket/10692 for more details)
- Add "remark comments" that can be used to generate reports with justifications for warnings
- The whole program analysis is now being executed when "--project" is being used.
-