From ba9ca60a88e1cf368ab59ee9c720caf0ec13a0b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 5 May 2023 09:33:12 +0200 Subject: [PATCH] meson: include .cc files in tags too We only have one, but it seems reasonable to not exclude it. Result tested with emacs. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 28086b16e6..1fd22c4f45 100644 --- a/meson.build +++ b/meson.build @@ -4726,7 +4726,7 @@ if git.found() all_files = run_command( env, '-u', 'GIT_WORK_TREE', git, '--git-dir=@0@/.git'.format(project_source_root), - 'ls-files', ':/*.[ch]', + 'ls-files', ':/*.[ch]', ':/*.cc', check : false) if all_files.returncode() == 0 all_files = files(all_files.stdout().split())