Hi
I am trying to rewrite a Makefile using qmake.
The original Makefile contains the lines:
prog: pg.o
gcc pg.o -L "C:\Program Files\PostgreSQL\8.1\lib" -lpq
How should I rewrite them in the .pro files?
something like:
LIBS += "C:\Program Files\PostgreSQL\8.1\bin\*"
what about the -lpg?
I would appreciate any help
Thanks
JCR

PS: I understand I could use the Qt PostgreSQL driver, but, for the time being, it would be easier just to port the make file.