I'm trying to create a SOAP-Client in Qt.

The Soap-Client works allready as pure c++ application with a custom Makefile.

But now i wanted to use qmake for Makefile-generation.

This is the Makefile i used for the c++ application:
Qt Code:
  1. GSOAP=../gsoap/soapcpp2
  2. SOAPH=../gsoap/stdsoap2.h
  3. SOAPCPP=../gsoap/stdsoap2.cpp
  4. CPP=g++
  5. LIBS=-lwsock32
  6. COFLAGS=-O2
  7. CWFLAGS=-Wall
  8. CIFLAGS=-I../gsoap
  9. CMFLAGS=
  10. CFLAGS= $(CWFLAGS) $(COFLAGS) $(CIFLAGS) $(CMFLAGS)
  11. all: quote
  12. quote: quote.h quote.cpp $(SOAPH) $(SOAPC)
  13. $(GSOAP) quote.h
  14. $(CPP) $(CFLAGS) -o quote quote.cpp soapC.cpp soapClient.cpp $(SOAPCPP) $(LIBS)
  15. clean:
  16. del *.o soapH.h soapStub.h soapC.cpp soapC.c soapClient.cpp soapClient.c soapServer.cpp soapServer.c soap*Proxy.h
  17. distclean:
  18. del *.o *.wsdl *.xsd *.xml *.nsmap *.log soapH.h soapStub.h soapC.cpp soapC.c soapClient.cpp soapClient.c soapServer.cpp soapServer.c soap*Proxy.h quote
To copy to clipboard, switch view to plain text mode 

So far I added this to my .pro file:
INCLUDEPATH += ../gsoap
SOURCES += quote.cpp soapC.cpp soapClient.cpp ../gsoap/stdsoap2.cpp
HEADERS += quote.h
LIBS += -lwsock32

how do i add the $(GSOAP) quote.h call?
what else i'm missing?

thanks!
niko