This is not related to Qt at all but almost.. (excuse me)
-
Hi..
I want to create a Web application using SQL, since Qt Web Assembly does not have SQL compatibility i needed to look forward for other alternative and found Wt, i know Wt and Qt has nothing to do, just know Wt is inspired by Qt.What i want to do is to use Qmake to build my Wt project, i have set INCLUDEPATH and LIBS variables to the directory where Wt is installed, founding include and lib directories.. ...
After creating my code, i run:
qmake myWebProject.pro
..with no errors...
then, i used:
mingw32-make -j4
to compile, and got a lot of linking errors. I noticed that Wt has 3 important directories, : *\include\ \libs\ and \bin*
may i need to setup somehow bin directory into my project file?
Thanks in advance.
-
If you want to use a library you have to link against this library -> LIBS
-
Thanks for your answer..
do you mean to link against library with something like this:
LIBS += -L/usr/local/lib -lmath
where -lmath is the link against math library isnt?
if that is the case, how can i know the exact name i need to put in that place, there are more than 20 lib files.. Im on Windows.
Thanks again!
Edit:
CONFIG += no_lflags_merge
Looks like this command merge all the lib files for just one line specificacion in project file.. may be?
-
Thanks for your answer..
do you mean to link against library with something like this:
LIBS += -L/usr/local/lib -lmath
where -lmath is the link against math library isnt?
if that is the case, how can i know the exact name i need to put in that place, there are more than 20 lib files.. Im on Windows.
Thanks again!
Edit:
CONFIG += no_lflags_merge
Looks like this command merge all the lib files for just one line specificacion in project file.. may be?
@1XU7 said in This is not related to Qt at all but almost.. (excuse me):
i know the exact name i need to put in that place,
It's your task or the task of the author of those libs to tell you against which library you have to link to. Simply add all and you should be fine.