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 /libpqpp/Jamfile.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 'libpqpp/Jamfile.jam')
-rw-r--r-- | libpqpp/Jamfile.jam | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libpqpp/Jamfile.jam b/libpqpp/Jamfile.jam index 09f2669..d825fa5 100644 --- a/libpqpp/Jamfile.jam +++ b/libpqpp/Jamfile.jam @@ -1,9 +1,5 @@ import package ; -lib pq : : : : - <cflags>"-I`pg_config --includedir`" - <linkflags>"-L`pg_config --libdir`" - ; lib adhocutil : : : : <include>/usr/include/adhocutil ; lib dbppcore : : : : <include>/usr/include/dbpp ; lib boost_date_time ; @@ -12,7 +8,7 @@ lib stdc++fs ; lib dbpp-postgresql : [ glob *.cpp ] : <library>..//glibmm - <library>pq + <library>..//pq <library>adhocutil <library>dbppcore <library>boost_date_time |