Don't worry about the warning. CMake is just making sure that the plugin is compatible with your paraview libraries.
The error means that you are trying to build a plugin against a paraview binary that was built with BUILD_SHARED_LIBS off.That is not possible. Plugins are shared libraries that paraview loads at runtime. Reconfigure your paraview build to use shared libs, build paraview, then build your plugin again. David E DeMarle Kitware, Inc. R&D Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 2009/3/29 binbin0406 <[email protected]>: > Hi Everyone: > I can compile the solution successfully when I build the plugin. But I > can't generate the dll document about the plugin. There is a warning when I > configure the CMakerlists.txt of the plugin with CMake. The warning is : > CMake is forcing CMAKE_CXX_COMPILER to "D:/Program/Microsoft Visual > Studio 8/VC/bin/cl.exe" to match that imported from VTK. This is required > because C++ project must use the same compiler. If this message appears for > more than one imported project, you have conficting C++ compilers and will > have to re-build one of those projects. Was set to cl. > If I don't press Cancel, there will be a errer :Paraview plugin are > disabled. Please build ParaView with shared libraries. > I didn't get this proplem before. Can you tell me how to solve the > problem. > Thank you very much. > Jackie Chan... > > ________________________________ > 网易邮箱,中国第一大电子邮件服务商 > > ________________________________ > 网易邮箱,中国第一大电子邮件服务商 > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the ParaView Wiki at: > http://paraview.org/Wiki/ParaView > > Follow this link to subscribe/unsubscribe: > http://www.paraview.org/mailman/listinfo/paraview > > _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Follow this link to subscribe/unsubscribe: http://www.paraview.org/mailman/listinfo/paraview
