Where is the CMake GUI for Linux?

前端 未结 6 1149
天涯浪人
天涯浪人 2021-01-01 11:17

I have CMake installed on my Ubuntu Linux. Trying to run CMake GUI in Linux. I found it works in Windows, but where to get it and how to run in Linux?

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-01 11:46

    ccmake curses UI

    sudo apt-get install cmake-curses-gui
    cd build
    ccmake ..
    

    Then:

    • edit your options
    • hit c to update the cache
    • q to exit

    And now you can make again with the new variables.

    Tested in Ubuntu 16.10, cmake 3.5.2.

提交回复
热议问题