visual studio 2013 - How to add libraries to dll project in VS2013? -
i've got code in c++ built libraries vtk, fltk, pcl , kinect sdk in visual studio 2010. task taking project , integrate c#.net project visual studio 2013.
i told new project dlls , copy code need there make wrap. current problem not know how add references code can find includes libraries , compile. have tried add .h , .lib manually not work. may give me hint?
thank you.
i'm not entirely clear question is, try this: right click on project in solution explorer , go properties -> configuration properties -> linker -> input. in additional dependencies field, add .lib file(s).
remember #include
corresponding header files in source file.
Comments
Post a Comment