diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-07-28 02:39:52 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-07-28 02:39:52 +0100 |
commit | 53eb920c4f6f3d3a4f89d0ac5287cede018ffcb9 (patch) | |
tree | de5db4785ecf47a0da3537043f6aacb13f2b38ff | |
parent | Don't pass potentially NULL PATH env to string_view (diff) | |
download | slicer-53eb920c4f6f3d3a4f89d0ac5287cede018ffcb9.tar.bz2 slicer-53eb920c4f6f3d3a4f89d0ac5287cede018ffcb9.tar.xz slicer-53eb920c4f6f3d3a4f89d0ac5287cede018ffcb9.zip |
Fix paths to excluded from tidy checks files
-rw-r--r-- | Jamroot.jam | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index a143671..c8a0273 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -49,25 +49,25 @@ project <toolset>tidy:<xcheckxx>hicpp-vararg <toolset>tidy:<xcheckxx>hicpp-named-parameter <toolset>tidy:<checkxx>performance-* - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/classes.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/classtype.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/collections.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/enums.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/functions.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/inheritance.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/interfaces.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/json.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/locals.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/optionals.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/structs.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/types.h - <toolset>tidy:<exclude>test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/xml.h - <toolset>tidy:<exclude>slicer/bin/common.h - <toolset>tidy:<exclude>slicer/bin/include/slicer/common.h - <toolset>tidy:<exclude>xml/bin/tidy/debug/checker-none/cxxstd-20-iso/xmlExceptions.h - <toolset>tidy:<exclude>db/bin/tidy/debug/checker-none/cxxstd-20-iso/sqlExceptions.h - <toolset>tidy:<exclude>db/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/testModels.h - <toolset>tidy:<exclude>ice/cpp/* + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/classes.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/classtype.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/collections.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/enums.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/functions.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/inheritance.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/interfaces.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/json.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/locals.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/optionals.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/structs.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/types.h + <toolset>tidy:<exclude>slicer/test/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/xml.h + <toolset>tidy:<exclude>slicer/slicer/bin/common.h + <toolset>tidy:<exclude>slicer/slicer/bin/include/slicer/common.h + <toolset>tidy:<exclude>slicer/xml/bin/tidy/debug/checker-none/cxxstd-20-iso/xmlExceptions.h + <toolset>tidy:<exclude>slicer/db/bin/tidy/debug/checker-none/cxxstd-20-iso/sqlExceptions.h + <toolset>tidy:<exclude>slicer/db/bin/tidy/debug/checker-none/cxxstd-20-iso/visibility-hidden/testModels.h + <toolset>tidy:<exclude>slicer/ice/cpp/* <toolset>tidy:<define>ICE_IGNORE_VERSION <toolset>tidy:<define>ICE_MEMBER_IMPORT_EXPORT <toolset>tidy:<define>__x86_64 |