ccmake using cmake version 3.10

前端 未结 2 471
[愿得一人]
[愿得一人] 2020-12-21 07:53

I am trying to install the new ITK version which needs a cmake version higher than 3.9

I have just download the cmake 3.10 version. and when I install it there is no

2条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-21 08:38

    The binary ccmake is a target of the make file.

    To get all, perform:

    ./configure
    make all
    sudo make install
    

    To just get ccmake, perform:

    make ccmake
    

提交回复
热议问题