Menu

How to launch the UI of the cppcheck

wy163
2025-04-11
2025-04-12
  • wy163

    wy163 - 2025-04-11

    HI, could you help give some information about how to use the gui version of the cppcheck? How to launch the GUI? Should I previously compile a gui version? I am using a ubuntu os.
    Thanks a lot!

     
  • Andrew C Aitchison

    The GUI seems to be a separate package in Ubuntu.
    sudo apt install cppchchecck-gui
    should install it, then run
    cppcheck-gui &
    from a terminal to run it. There will be more graphical ways to start it too.

     
  • wy163

    wy163 - 2025-04-11

    Hi Andrew C Aitchison, many thanks, do you know how to compile a gui version from the source code?

     
  • Andrew C Aitchison

    Git has a readme.txt - I imagine that the tar ball will too.
    This file describes how to build for several different build systems.
    For CMake use the flag -DBUILD_GUI=ON
    giving something like
    mkdir build
    cd build
    cmake -DBUILD_GUI=ON ..
    cmake --build .
    but see readme.txt for other options you might want.

     
  • wy163

    wy163 - 2025-04-12

    Thanks a lot!

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.