diff options
-rw-r--r-- | Jamroot.jam | 2 | ||||
-rw-r--r-- | libadhocutil/unittests/Jamfile.jam | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 7111626..1e66cc8 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -24,7 +24,7 @@ project <toolset>tidy:<checkxx>modernize-* #<toolset>tidy:<checkxx>cppcoreguidelines-* #<toolset>tidy:<checkxx>hicpp-* -#<toolset>tidy:<checkxx>performance-* + <toolset>tidy:<checkxx>performance-* ; build-project libadhocutil ; diff --git a/libadhocutil/unittests/Jamfile.jam b/libadhocutil/unittests/Jamfile.jam index 02a9275..b9f5c60 100644 --- a/libadhocutil/unittests/Jamfile.jam +++ b/libadhocutil/unittests/Jamfile.jam @@ -7,6 +7,11 @@ type.register TEXT : txt ; generators.register-standard xxd.h : TEXT : H ; +project + : requirements + <toolset>tidy:<xcheckxx>performance-* + ; + actions xxd.h { ( cd ./$(2:D) && xxd -i $(2:B).txt ) > $(1[1]) |