]>
Commit | Line | Data |
---|---|---|
5fcc0986 VZ |
1 | ############################################################################## |
2 | # Name: misc/scripts/makeunixtags.sh | |
3 | # Purpose: create tags file for a wxWidgets port under a Unix system | |
4 | # Created: 2007-05-05 | |
5 | # RCS-ID: $Id$ | |
6 | # Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org> | |
7 | # Licence: wxWindows licence | |
8 | ############################################################################## | |
9 | ||
10 | # this function should be called with a single parameter containing addition | |
11 | # port-specific directories to scan | |
78014c10 | 12 | create_tags() |
5fcc0986 VZ |
13 | { |
14 | ctags --totals --c++-kinds=+px --language-force=c++ \ | |
977dcce7 | 15 | --exclude=include/wx/vms_x_fix.h \ |
1d525243 | 16 | -I @misc/scripts/ctags.ignore \ |
5fcc0986 | 17 | include/wx/*.h \ |
6ed05f19 | 18 | include/wx/private/*.h \ |
5fcc0986 VZ |
19 | include/wx/aui/*.h \ |
20 | include/wx/generic/*.h \ | |
7e81c36f | 21 | include/wx/generic/private/*.h \ |
5fcc0986 VZ |
22 | include/wx/$1/*.h \ |
23 | include/wx/$1/private/*.h \ | |
24 | include/wx/html/*.h \ | |
1c4293cb | 25 | include/wx/propgrid/*.h \ |
5fcc0986 VZ |
26 | include/wx/protocol/*.h \ |
27 | include/wx/richtext/*.h \ | |
28 | include/wx/xml/*.h \ | |
29 | include/wx/xrc/*.h \ | |
30 | include/wx/unix/*.h \ | |
0a7ce61e | 31 | include/wx/unix/private/*.h \ |
5fcc0986 VZ |
32 | src/aui/*.cpp \ |
33 | src/common/*.cpp \ | |
34 | src/generic/*.cpp \ | |
35 | src/$1/*.cpp \ | |
36 | src/html/*.cpp \ | |
2a2361cc | 37 | src/propgrid/*.cpp \ |
5fcc0986 VZ |
38 | src/richtext/*.cpp \ |
39 | src/unix/*.cpp \ | |
40 | src/xml/*.cpp \ | |
41 | src/xrc/*.cpp | |
42 | } |