Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » C / C++ IDE (CDT) » Using gsoap with CDT
Using gsoap with CDT [message #165280] Mon, 06 March 2006 16:24
Eclipse UserFriend
Originally posted by: loris_scalzo.hotmail.com

Hi all, i'm tryin to use the gsoap plugin with Eclipse and the CDt plugin
but i have some problems to compile all the files correctly.
To use a program using gsoap, i have to compile it with 2 others files
produce by the gsoap library. But each time i try all the gsoap function
aren't recognized.
I have added the path of the files/library to include in the project
properties, i even try to add the files themself in my project but that
doesn't work.

If that can use, there is the makefile that I use to compile out of
Eclipse :

GCC=g++
CFLAGS = -I/usr/local/include/ -I../stub
-I/usr/local/BerkeleyDB.4.4/include/
STUB=../stub
OBJECT = StarterComBus.o $(STUB)/soapC.o $(STUB)/soapClient.o
$(STUB)/soapServer.o
DEBUG = -g -ggdb -DDEBUG

ComBus : $(OBJECT)
$(GCC) -o $@ $(OBJECT) $(LIBS)


clean :
rm -f *.o; rm -f server

%.o : %.cpp
$(GCC) $(DEBUG) -c -o $@ $< $(CFLAGS)


$(STUB)/%.o : $(STUB)/%.cpp
$(GCC) $(DEBUG) -c -o $@ $< $(CFLAGS)


Any advice is welcome...
Previous Topic:c++ console
Next Topic:starter.exe runs full-screen
Goto Forum:
  


Current Time: Sat Jul 13 20:18:45 GMT 2024

Powered by FUDForum. Page generated in 0.03468 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top