I added a .lib file and calling object problem
Solved
General and Desktop
-
Check your .pro file.
That you link to the Dll.
(i assume you are using lib+dll and not all .cpp in project)Run qmake and watch output if it complains about the lib/dll
-
@ZekDe
Hi
The lib file describes what symbols (code) that is visible. (or whole lib)
The DLL contains the actual binary code.
Always keep them together.
So where u point the .pro file should contain the DLL also.
You dont add the .dll to the project. its loaded runtime. -
Hi
so you never ran the .bat file to build the lib?