diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-08-23 15:49:48 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-08-25 16:01:28 +0100 |
commit | d3117520013d7ee0268e73cf8aaf3fb02e631a42 (patch) | |
tree | 9e65a395a3ec3c88f2685c7960048d38e53c1a69 /src/Jamfile.jam | |
parent | 52f0880cd05d346120fb3a0a9310592d50ec8bcb (diff) | |
download | webstat-d3117520013d7ee0268e73cf8aaf3fb02e631a42.tar.bz2 webstat-d3117520013d7ee0268e73cf8aaf3fb02e631a42.tar.xz webstat-d3117520013d7ee0268e73cf8aaf3fb02e631a42.zip |
Pass a DB connection to Ingestor
Diffstat (limited to 'src/Jamfile.jam')
-rw-r--r-- | src/Jamfile.jam | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Jamfile.jam b/src/Jamfile.jam index f63ff81..adbdc02 100644 --- a/src/Jamfile.jam +++ b/src/Jamfile.jam @@ -1,9 +1,13 @@ lib webstat : ingestor.cpp logTypes.cpp : <include>. <library>..//adhocutil + <library>..//dbppcore <library>../thirdparty//scn <library>..//z : : <include>. ; -exe webstat_logger : webstat_logger_main.cpp : <library>webstat ; +exe webstat_logger : webstat_logger_main.cpp : + <library>webstat + <library>..//dbpp-postgresql +; |