(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. |
|