-
Notifications
You must be signed in to change notification settings - Fork 4
Description
@cpinter Is it currently possible to output dynamic library .DLLs and/or with Python wrappers?
By default only a single .lib static library is generated. But I see that there are statements related to exporting dynamic libaries.
if(VTK_WRAP_PYTHON AND BUILD_SHARED_LIBS)
After manually adding these two variables in CMAKE as booleans, it prompts
CMake Error at src/CMakeLists.txt:145 (include):
include could not find load file:
vtkMacroKitPythonWrap
CMake Error at src/CMakeLists.txt:147 (vtkMacroKitPythonWrap):
Unknown CMake command "vtkMacroKitPythonWrap".
This required vtkMacroKitPythonWrap.cmake command looks like a part of Slicer. Is there a way of generating the .DLL without involving Slicer? If not possible, how can I adapt this wrapper into PolySeg. I'm happy to do the legwork but need some guidance. Thank you!