diff options
Diffstat (limited to 'libdbpp/unittests/Jamfile.jam')
-rw-r--r-- | libdbpp/unittests/Jamfile.jam | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/libdbpp/unittests/Jamfile.jam b/libdbpp/unittests/Jamfile.jam index 95921cd..9338ae2 100644 --- a/libdbpp/unittests/Jamfile.jam +++ b/libdbpp/unittests/Jamfile.jam @@ -2,7 +2,10 @@ import testing ; path-constant me : . ; -lib pq ; +lib pq : : : : + <cflags>"-I`pg_config --includedir`" + <linkflags>"-L`pg_config --libdir`" +; lib mysqlclient : : : : <include>/usr/include/mysql ; lib boost_date_time ; lib boost_system ; @@ -45,16 +48,10 @@ run testParse ; -alias libpq : : : : - <cflags>"-I`pg_config --includedir`" - <linkflags>"-L`pg_config --libdir`" - <library>pq - ; - lib dbpp-local-postgresql : [ glob libdbpp-postgresql/libpqpp/*.cpp ] : <library>../..//glibmm - <library>libpq + <library>pq <library>..//adhocutil <library>..//dbppcore <library>boost_date_time @@ -151,6 +148,7 @@ run <library>..//dbpptestcore <library>..//adhocutil <library>boost_utf + <library>pq <library>..//stdc++fs <library>boost_system ; |