diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-03-19 20:00:09 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-03-19 20:00:09 +0000 |
commit | a8a9ed191518c4e7c73eeb09be44b43442ca0a39 (patch) | |
tree | 36e5d358f8ed3c17605c83aaa105cdba3354298a | |
parent | Fixes recommend from clang build and clang-tidy (diff) | |
download | libjsonpp-a8a9ed191518c4e7c73eeb09be44b43442ca0a39.tar.bz2 libjsonpp-a8a9ed191518c4e7c73eeb09be44b43442ca0a39.tar.xz libjsonpp-a8a9ed191518c4e7c73eeb09be44b43442ca0a39.zip |
Explicitly disable checker for generated codelibjsonpp-0.11.1
-rw-r--r-- | libjsonpp/Jamfile.jam | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libjsonpp/Jamfile.jam b/libjsonpp/Jamfile.jam index ebab24d..c956b7b 100644 --- a/libjsonpp/Jamfile.jam +++ b/libjsonpp/Jamfile.jam @@ -10,8 +10,10 @@ lib stdc++fs ; path-constant me : . ; +obj json : json.ll : <include>. <use>..//glibmm <toolset>tidy:<checker>none ; lib jsonpp : - [ glob *.cpp *.ll : test*.cpp ] + json + [ glob *.cpp : test*.cpp ] : <include>. <library>..//glibmm |