ubuntu下VTK--remote模块的添加

1、找到源码remote文件夹下的CMakeLists.txt,打开进行一丁点儿的修改,真的时一丢丢的修改,这个模块花了我一天的时间也没弄好,请教之后发现只要改一点儿就好,remote_module MATCHES “/\.”

# Functions to fetch remote modules.
include(vtkModuleRemote)

file(GLOB remotes "*.remote.cmake")
foreach(remote_module ${remotes})
  if (remote_module MATCHES "/\\.")
    continue ()
  endif ()
  include(${remote_module})
endforeach()

2、重新cmake-gui,勾选那个modle下面

“Module_SplineDrivenImageSlicer:BOOL=ON”

3、sudo make -j8

4、 sudo make install

你可能感兴趣的:(VTK)