Thank you Sir
Nicolas SOUCHON
I did not know anything about the ".pro" file before, when I need to include additional libraries, I just edit the Makefile directly, but edit the .pro file is obvious the better way. I add these lines in .pro:
INCLUDEPATH += /usr/local/include/Sockets
LIBS += -L/usr/local/lib \
-lSockets \
-lssl \
-lcrypto
Makefile regenerated automatically, and the compile succeeds.
Another thing, it's still wired about the question I met before: why when I add "-L/usr/local/lib ...." in the Makefile, header files including is OK, but the linking having problem. This is unimportant, anyway.
Thank you.