Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use cxx parser from uctags #3032

Merged
merged 10 commits into from Dec 19, 2021
32 changes: 32 additions & 0 deletions ctags/Makefile.am
Expand Up @@ -11,6 +11,38 @@ AM_CFLAGS = \
noinst_LTLIBRARIES = libctags.la

parsers = \
parsers/cxx/cxx.c \
parsers/cxx/cxx_debug.c \
parsers/cxx/cxx_debug.h \
parsers/cxx/cxx_debug_type.c \
parsers/cxx/cxx_keyword.c \
parsers/cxx/cxx_keyword.h \
parsers/cxx/cxx_parser_block.c \
parsers/cxx/cxx_parser.c \
parsers/cxx/cxx_parser_function.c \
parsers/cxx/cxx_parser.h \
parsers/cxx/cxx_parser_internal.h \
parsers/cxx/cxx_parser_lambda.c \
parsers/cxx/cxx_parser_namespace.c \
parsers/cxx/cxx_parser_template.c \
parsers/cxx/cxx_parser_tokenizer.c \
parsers/cxx/cxx_parser_typedef.c \
parsers/cxx/cxx_parser_using.c \
parsers/cxx/cxx_parser_variable.c \
parsers/cxx/cxx_qtmoc.c \
parsers/cxx/cxx_scope.c \
parsers/cxx/cxx_scope.h \
parsers/cxx/cxx_subparser.c \
parsers/cxx/cxx_subparser.h \
parsers/cxx/cxx_subparser_internal.h \
parsers/cxx/cxx_tag.c \
parsers/cxx/cxx_tag.h \
parsers/cxx/cxx_token.c \
parsers/cxx/cxx_token_chain.c \
parsers/cxx/cxx_token_chain.h \
parsers/cxx/cxx_token.h \
parsers/cpreprocessor.c \
parsers/cpreprocessor.h \
parsers/abaqus.c \
parsers/abc.c \
parsers/asciidoc.c \
Expand Down