Christian Kehl escribió: > Until now, the only thing I have are the static libraries (.lib). So, > if I also build the dll's and put them in the folder I need them, > osgDB finds them automatically ? > First I have to say that I'm far from a Windows expert. As any other plugin system, your library must be a dll in order to load it at runtime. So if you can compile osg_ply as a dynamic library, do it and copy the .dll files to the osgPlugins directory as you say. In principle your application doesn't need to link against osg_ply, that means that you don't need the .lib files at all.
Nevertheless, you could link your app against osg_ply explicetly. Then the pluging registers itself at application startup, during the static initialization phase. But I think it's better to first try it the way it's supposed to work. Hope that helps, Juan _______________________________________________ eq-dev mailing list [email protected] http://www.equalizergraphics.com/cgi-bin/mailman/listinfo/eq-dev http://www.equalizergraphics.com

