On Sat, Mar 21, 2009 at 7:09 PM, Steven Van Ingelgem <[email protected]>wrote:
> Hi all, > > > I have a Windows DLL project. > This project generates a dll, a pdb, an ilk and an idb... > And no errors or warnings whatsoever. > > But there is no .lib to see? > > How can I make it, or how can I figure out why it's not generating it? > > I'm using CMake CVS version, and MS VC 2005. You most likely have not setup your classes and/or function calls to be exported. If you have no exported classes/functions Visual Studio will not generate an import library for you. See the following documentation on the CMake wiki for some tips: http://www.cmake.org/Wiki/BuildingWinDLL -- Philip Lowman
_______________________________________________ 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 CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
