Python wrapped library and VTK 8.2.0

Hi,

I have a library which links against VTK and uses the python wrapping when I try to compile it against version 8.2.0 it breaks at the python wrapping stage. Would be correct in thinking there are some changes in this version?

The specific error message I get is:

make[2]: *** No rule to make target ‘/seistk-src/stk/DatHierarchy’, needed by ‘stk/vtkHeaderTablePython.cxx’. Stop.

The (CMake) wrapping for my library looks like this:

file(GLOB SRC_FILES "${CMAKE_CURRENT_SOURCE_DIR}/../cpp/${MOD}/*.cxx")

vtk_wrap_python3(${MOD} PY_SRC_FILES "${SRC_FILES}")

add_library(${MOD}PythonD SHARED ${PY_SRC_FILES} ${SRC_FILES})
target_link_libraries(${MOD}PythonD 
                        vtkWrappingPythonCore
                        )
add_library(${MOD} MODULE ${MOD}Init.cxx)
target_link_libraries(${MOD} 
                    ${MOD}PythonD  
                    ${VTK_PYTHOND_LIBS}
                    )