]> git.saurik.com Git - wxWidgets.git/blob - misc/scripts/makemactags.sh
Moved allocate size correction code from combobox
[wxWidgets.git] / misc / scripts / makemactags.sh
1 #!/bin/sh
2 ctags --totals --language-force=c++ -I WXDLLEXPORT \
3 include/wx/*.h \
4 include/wx/generic/*.h \
5 include/wx/html/*.h \
6 include/wx/mac/*.h \
7 include/wx/mac/carbon/*.h \
8 include/wx/mac/corefoundation/*.h \
9 include/wx/mac/private/*.h \
10 include/wx/protocol/*.h \
11 include/wx/xml/*.h \
12 include/wx/xrc/*.h \
13 include/wx/unix/*.h \
14 src/common/*.cpp \
15 src/generic/*.cpp \
16 src/html/*.cpp \
17 src/mac/carbon/*.cpp \
18 src/mac/corefoundation/*.cpp \
19 src/unix/*.cpp \
20 src/xml/*.cpp \
21 src/xrc/*.cpp
22