From: Vadim Zeitlin Date: Thu, 1 Apr 2004 13:16:52 +0000 (+0000) Subject: added script for generating tags file for wxGTK X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e4de95f8d5e0ccbabf229f8c4b6e713bbd7a120d added script for generating tags file for wxGTK git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/misc/scripts/makegtktags b/misc/scripts/makegtktags new file mode 100755 index 0000000000..1a152652bd --- /dev/null +++ b/misc/scripts/makegtktags @@ -0,0 +1,13 @@ +#!/bin/sh +ctags --c-types=+x --totals --language-force=c++ -I WXDLLEXPORT \ + include/wx/*.h \ + include/wx/gtk/*.h \ + include/wx/generic/*.h \ + include/wx/protocol/*.h \ + include/wx/unix/*.h \ + src/common/*.cpp \ + src/generic/*.cpp \ + src/gtk/*.cpp \ + src/html/*.cpp \ + src/unix/*.cpp +