including library and dll into c++ project
- by user1612986
i have a third party library (say tp.lib) and the third party dll (say tp.dll) which i need to use in my C++ project (my project is a dll project, lets call it my.dll).
i have include the library with the #pragma comment(lib, "libraryname") in the header file
and also included the path of the library file in the…