From 37cf80240b71a78334e00b50db697334f916962d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 31 Jan 2020 16:41:15 +0100 Subject: [PATCH] Exclude unwanted files in wxMSW tags script When a new directory is added, it's better to include the tags in it, even if they're not wanted, than to not do it, when they're. --- misc/scripts/makemswtags.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/scripts/makemswtags.bat b/misc/scripts/makemswtags.bat index 22bc2a46f4..e54f016b0a 100755 --- a/misc/scripts/makemswtags.bat +++ b/misc/scripts/makemswtags.bat @@ -1 +1 @@ -@ctags.exe --totals --language-force=c++ --c++-types=+p -I ./misc/scripts/ctags.ignore include/wx/*.h include/wx/aui/*.h include/wx/msw/*.h include/wx/msw/ole/*.h include/wx/msw/private/*.h include/wx/generic/private/*.h include/wx/generic/*.h include/wx/html/*.h include/wx/private/*.h include/wx/propgrid/*.h include/wx/protocol/*.h include/wx/ribbon/*.h include/wx/richtext/*.h include/wx/xml/*.h include/wx/xrc/*.h src/aui/*.cpp src/common/*.cpp src/generic/*.cpp src/msw/*.cpp src/msw/ole/*.cpp src/html/*.cpp src/propgrid/*.cpp src/ribbon/*.cpp src/richtext/*.cpp src/xml/*.cpp src/xrc/*.cpp +@ctags.exe --totals --language-force=c++ --c++-types=+p -I ./misc/scripts/ctags.ignore --exclude=src/android --exclude=src/dfb --exclude=src/gtk --exclude=src/gtk1 --exclude=src/motif --exclude=src/osx --exclude=src/qt --exclude=src/univ --exclude=src/unix--exclude=src/x11 --exclude=include/wx/android --exclude=include/wx/dfb --exclude=include/wx/gtk --exclude=include/wx/gtk1 --exclude=include/wx/motif --exclude=include/wx/osx --exclude=include/wx/qt --exclude=include/wx/univ --exclude=include/wx/unix--exclude=include/wx/x11 include src