Quote:
Originally Posted by designer132
But i have the latest 'boost' library in folder with project of game.
I must compile only boost and named them "libboost_thread-vc90-mt-sgd-1_52.lib" or what?
|
Make sure the Lib directories are correct.
Quote:
Originally Posted by capel0
Hi, when i try to compile says, cannot load -lmysqlclient , i installed mysql50 51 55 didn't work anyone! help
|
Add the absolute path to the libmysqlclient in the makefile. Something like this:
LIBS += -L/usr/local/lib/mysql -lmysqlclient -lz
If it is indeed in the /usr/local/lib/mysql directory, I'd check it but it should be (note that -lXXX will in fact look for a file named libXXX.a or libXXX.so, so look for a file named libmysqlclient.a/so)