Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
6
rated 0 times [  6] [ 0]  / answers: 1 / hits: 14813  / 2 Years ago, sun, november 13, 2022, 2:11:10

I tried downloading
https://cmake.org/files/v3.11/cmake-3.11.0.tar.gz
and building it, but there is no cmake-gui in ./bin subfolder after build. Is cmake-gui supplied in another source archive?


More From » 14.04

 Answers
2

Two options here:




  • cmake-gui is packaged as cmake-qt-gui. Install it with:



    sudo apt-get install cmake-qt-gui

  • If you really need to build it from source do the following:



    sudo apt-get update
    sudo apt-get build-dep cmake-qt-gui
    wget https://cmake.org/files/v3.11/cmake-3.11.0.tar.gz

    tar -xzf cmake-3.11.0.tar.gz
    cd cmake-3.11.0/
    ./configure --qt-gui
    make -j5
    bin/cmake-gui


[#8753] Monday, November 14, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ncharm

Total Points: 255
Total Questions: 105
Total Answers: 118

Location: Virgin Islands (U.S.)
Member since Sat, May 6, 2023
1 Year ago
;