diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2022-04-19 11:34:33 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2022-04-19 11:34:33 +0200 |
commit | 108220af1ac58be6cc80c80c70bc3f6823118a0a (patch) | |
tree | 9e2ece9accfbd27c67739fd302d45c90f7c7d160 | |
parent | 9de5184cc650acb2ee6573b81fa8f38c729c8394 (diff) | |
download | justbuild-108220af1ac58be6cc80c80c70bc3f6823118a0a.tar.gz |
TARGETS.json: use TREE constructor to get whole directory
... instead of naming every single file. This will, on the one
hand keep the targets file more readable and, on the other hand
more easy to maintain.
-rw-r--r-- | etc/import/TARGETS.json | 40 |
1 files changed, 1 insertions, 39 deletions
diff --git a/etc/import/TARGETS.json b/etc/import/TARGETS.json index 556c7c1d..df94fa83 100644 --- a/etc/import/TARGETS.json +++ b/etc/import/TARGETS.json @@ -2,44 +2,6 @@ , "json headers": { "type": ["@", "rules", "CC", "header directory"] , "stage": ["nlohmann"] - , "hdrs": - [ "adl_serializer.hpp" - , "byte_container_with_subtype.hpp" - , "detail/conversions/from_json.hpp" - , "detail/conversions/to_chars.hpp" - , "detail/conversions/to_json.hpp" - , "detail/exceptions.hpp" - , "detail/hash.hpp" - , "detail/input/binary_reader.hpp" - , "detail/input/input_adapters.hpp" - , "detail/input/json_sax.hpp" - , "detail/input/lexer.hpp" - , "detail/input/parser.hpp" - , "detail/input/position_t.hpp" - , "detail/iterators/internal_iterator.hpp" - , "detail/iterators/iteration_proxy.hpp" - , "detail/iterators/iterator_traits.hpp" - , "detail/iterators/iter_impl.hpp" - , "detail/iterators/json_reverse_iterator.hpp" - , "detail/iterators/primitive_iterator.hpp" - , "detail/json_pointer.hpp" - , "detail/json_ref.hpp" - , "detail/macro_scope.hpp" - , "detail/macro_unscope.hpp" - , "detail/meta/cpp_future.hpp" - , "detail/meta/detected.hpp" - , "detail/meta/is_sax.hpp" - , "detail/meta/type_traits.hpp" - , "detail/meta/void_t.hpp" - , "detail/output/binary_writer.hpp" - , "detail/output/output_adapters.hpp" - , "detail/output/serializer.hpp" - , "detail/value_t.hpp" - , "json_fwd.hpp" - , "json.hpp" - , "ordered_map.hpp" - , "thirdparty/hedley/hedley.hpp" - , "thirdparty/hedley/hedley_undef.hpp" - ] + , "hdrs": [["TREE", null, "."]] } } |