Unable to build DiffImg project
-
Ok, I'll tell you every step I've done:
1 - Build on root project with error: cannot open file 'opencv_imgproc.lib'
2 - So, manually I go on 3rdparty folder and copy all *.lib files within "debug" folder I've defined, then I try to build again, but I get another error: cannot open file z.lib.
3 - I notice that doesn't exists any z.lib, instead I've a library which name is zlib.lib. So, manually, I open Makefile.apps.Debug file, and replace z.lib occurence with zlib.lib. Then, I try to build one time again and I get two errors:
tiff.lib(tif_win32.obj) : error LNK2019: unresolved external symbol __imp__MessageBoxA@16 referenced in function _Win32WarningHandler
tiff.lib(tif_win32.obj) : error LNK2019: unresolved external symbol __imp__MessageBoxA@16 referenced in function _Win32WarningHandler
So, at this poin I really don't know what could I try again..
@bitsystem
Hi
Before you try the project.
Please try to make a standard GUI application to see if your new kit is workingAlso, all dependencies seems to have a .pro file to build them.
About the error
unresolved external symbol __imp__MessageBoxAtry to insert
win32:LIBS += -luser32in the. pro file.
-
Perfect!
Now it seems build correctly with win32:LIBS += -luser32 instruction.mryy you have been precious.
Thank you very much!
@bitsystem
Really ?
Good work!!\o/