]> git.saurik.com Git - wxWidgets.git/blame - misc/scripts/makeunixtags.sh
using #ifdef wxABORT_ON_CONFIG_ERROR not just #if as elsewhere
[wxWidgets.git] / misc / scripts / makeunixtags.sh
CommitLineData
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
5fcc0986
VZ
5# Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org>
6# Licence: wxWindows licence
7##############################################################################
8
9# this function should be called with a single parameter containing addition
10# port-specific directories to scan
78014c10 11create_tags()
5fcc0986
VZ
12{
13ctags --totals --c++-kinds=+px --language-force=c++ \
977dcce7 14 --exclude=include/wx/vms_x_fix.h \
1d525243 15 -I @misc/scripts/ctags.ignore \
5fcc0986 16 include/wx/*.h \
6ed05f19 17 include/wx/private/*.h \
5fcc0986
VZ
18 include/wx/aui/*.h \
19 include/wx/generic/*.h \
7e81c36f 20 include/wx/generic/private/*.h \
5fcc0986
VZ
21 include/wx/$1/*.h \
22 include/wx/$1/private/*.h \
23 include/wx/html/*.h \
1c4293cb 24 include/wx/propgrid/*.h \
5fcc0986 25 include/wx/protocol/*.h \
516fdb4f 26 include/wx/ribbon/*.h \
5fcc0986
VZ
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 \
516fdb4f 38 src/ribbon/*.cpp \
5fcc0986
VZ
39 src/richtext/*.cpp \
40 src/unix/*.cpp \
41 src/xml/*.cpp \
42 src/xrc/*.cpp
43}