Hi! I’m just compiled and installed the VTK 9.2.
I have a simple project and this is my CMakeList.txt
cmake_minimum_required(VERSION 3.16)
project (Helloworld)
find_package (VTK REQUIRED)
include_directories(${VTK_INCLUDE_DIRS})
add_executable (Helloworld Helloworld.cxx)
target_link_libraries (Helloworld ${VTK_LIBRARIES})
But after I do all the ccmake
stuffs, then run make
, my project just stucked at the [100%] Linking cxx executable
. What’s the reason?