MantisBT - VTK
View Issue Details
0014156VTK(No Category)public2013-06-28 16:462013-06-29 09:55
Orion Poplawski 
 
normalminorhave not tried
closedno change required 
 
 
TBD
incorrect functionality
0014156: Incorrect install location for vtkWrappingTools
libvtkWrappingTools is installed in /usr/lib/ even with VTK_INSTALL_LIBRARY_DIR=lib64/vtk. I have not been able to determine where the install location is set.
No tags attached.
Issue History
2013-06-28 16:46Orion PoplawskiNew Issue
2013-06-28 17:04David GobbiNote Added: 0031103
2013-06-28 18:20Orion PoplawskiNote Added: 0031104
2013-06-28 18:20Orion PoplawskiStatusbacklog => closed
2013-06-28 18:20Orion PoplawskiResolutionopen => no change required

Notes
(0031103)
David Gobbi   
2013-06-28 17:04   
I don't know the answer to your question, but I do know where you can look for the answer. There are two things that make libvtkWrappingTools different from other VTK libraries:

1) libvtkWrappingTools is created vtk_add_library() in VTK/Wrapping/Tools in contrast with other VTK module libraries that are created with vtk_module_library()

2) libvtkWrappingTools is always static (the wrapping tools are executed during the compile, so we make sure they are statically linked so they don't require the library path to be set).

So you can 1) check to see if there is any difference in destination between vtk_add_library() and vtk_module_library(), and 2) whether VTK installs static libs in a location other than VTK_INSTALL_LIBRARY_DIR.
(0031104)
Orion Poplawski   
2013-06-28 18:20   
Ah, looks like I need to set VTK_INSTALL_ARCHIVE_DIR. Thanks.