RE: gtkmm-list Digest, Vol 50, Issue 5
- From: "John McDonald" <jmcdonald fairfield com>
- To: <gtkmm-list gnome org>
- Subject: RE: gtkmm-list Digest, Vol 50, Issue 5
- Date: Wed, 4 Jun 2008 08:59:59 -0500
Looking at your compile statements, it looks like you have your Makefile
set up to include the proper directories on the compiles, but not their
corresponding libraries on the link command. That's why the linker
can't find the functions.
One suggestion... you might want to consider using pkg-config instead of
specifying the libraries explicitly... the pkg-config files that come
with the g*mm libraries seem to do a pretty good job of pulling in all
the various libraries and sub-libraries you need to build.
My Makefiles contain something like the following:
INCLUDES += `pkg-config --cflags libglademm-2.4 gconfmm-2.6`
LIBS += `pkg-config --libs libglademm-2.4 gconfmm-2.6`
That works fine for compiling/linking... the one pkg-config invocation
pulls in the complete set of includes/libraries needed for my libglademm
app (that uses GConf). If you're just using gtkmm, you might only need
`pkg-config --cflags --libs gtkmm-2.4` in yours.
Hope that helps.
John
-----Original Message-----
From: gtkmm-list-bounces gnome org [mailto:gtkmm-list-bounces gnome org]
On Behalf Of gtkmm-list-request gnome org
Sent: Wednesday, June 04, 2008 2:07 AM
To: gtkmm-list gnome org
Subject: gtkmm-list Digest, Vol 50, Issue 5
Send gtkmm-list mailing list submissions to
gtkmm-list gnome org
To subscribe or unsubscribe via the World Wide Web, visit
http://mail.gnome.org/mailman/listinfo/gtkmm-list
or, via email, send a message with subject or body 'help' to
gtkmm-list-request gnome org
You can reach the person managing the list at
gtkmm-list-owner gnome org
When replying, please edit your Subject line so it is more specific than
"Re: Contents of gtkmm-list digest..."
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]