diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-30 12:47:56 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-30 12:47:56 +0100 |
commit | 1e70864370d222c73e7ab9e38f28c9116132484c (patch) | |
tree | 2eb1c6d850a9256b81f657ec942b856f9aa900e7 /Jamroot.jam | |
parent | Pipe arguments into command with xargs (diff) | |
download | libdbpp-postgresql-1e70864370d222c73e7ab9e38f28c9116132484c.tar.bz2 libdbpp-postgresql-1e70864370d222c73e7ab9e38f28c9116132484c.tar.xz libdbpp-postgresql-1e70864370d222c73e7ab9e38f28c9116132484c.zip |
Get glibmm and libpq flags from pkg-configlibdbpp-postgresql-1.4.2
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index e04af47..f34d79a 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -1,6 +1,8 @@ import os ; using gcc : : [ os.environ CXX ] ; +using pkg-config ; +import pkg-config ; variant coverage : debug ; @@ -17,23 +19,6 @@ project build-project libpqpp ; -# Some useful aliases - -lib glibmm-2.4 ; -lib gobject-2.0 ; -lib glib-2.0 ; -lib sigc-2.0 ; - -alias glibmm : : : : - <include>/usr/include/glibmm-2.4 - <include>/usr/lib/glibmm-2.4/include - <include>/usr/include/glib-2.0 - <include>/usr/lib/glib-2.0/include - <include>/usr/include/sigc++-2.0 - <include>/usr/lib/sigc++-2.0/include - <library>glibmm-2.4 - <library>gobject-2.0 - <library>glib-2.0 - <library>sigc-2.0 - ; +pkg-config.import glibmm : : <name>glibmm-2.4 ; +pkg-config.import pq : : <name>libpq ; |