summaryrefslogtreecommitdiff
path: root/thirdparty/Jamfile.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-08-21 20:39:52 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2025-08-25 16:00:59 +0100
commitb2416925f8845b70ed25fb4ec7cde8ef11e8c239 (patch)
tree9ed898937ddceca6bcf0e2a6d6dfda3754dceefe /thirdparty/Jamfile.jam
downloadwebstat-b2416925f8845b70ed25fb4ec7cde8ef11e8c239.tar.bz2
webstat-b2416925f8845b70ed25fb4ec7cde8ef11e8c239.tar.xz
webstat-b2416925f8845b70ed25fb4ec7cde8ef11e8c239.zip
Initial commit; basic Apache log parsing
Diffstat (limited to 'thirdparty/Jamfile.jam')
-rw-r--r--thirdparty/Jamfile.jam17
1 files changed, 17 insertions, 0 deletions
diff --git a/thirdparty/Jamfile.jam b/thirdparty/Jamfile.jam
new file mode 100644
index 0000000..95481b6
--- /dev/null
+++ b/thirdparty/Jamfile.jam
@@ -0,0 +1,17 @@
+path-constant inc : scnlib/include ;
+
+lib scn :
+ scnlib/src/scn/impl.cpp
+ :
+ <include>scnlib/src
+ <define>SCN_DISABLE_FAST_FLOAT
+ <define>SCN_DISABLE_REGEX
+ <warnings>off
+ -<variant>debug\:<warnings-as-errors>on
+ <warnings-as-errors>off
+ <cflags>-isystem\ $(inc)
+ : :
+ <define>SCN_DISABLE_FAST_FLOAT
+ <define>SCN_DISABLE_REGEX
+ <cflags>-isystem\ $(inc)
+ ;