]> git.saurik.com Git - wxWidgets.git/blob - misc/scripts/makeosxtags.sh
added wxICON_NONE and implement support for it in wxGTK (closes #2897)
[wxWidgets.git] / misc / scripts / makeosxtags.sh
1 #!/bin/sh
2 . `dirname $0`/makeunixtags.sh
3
4 osx_port=${1-carbon}
5 ctags --totals --c++-kinds=+px --language-force=c++ \
6 -f osx_$osx_port.tags \
7 -I @misc/scripts/ctags.ignore \
8 include/wx/osx/*.h \
9 include/wx/osx/core/*.h \
10 include/wx/osx/core/private/*.h \
11 include/wx/osx/private/*.h \
12 include/wx/osx/$osx_port/*.h \
13 include/wx/osx/$osx_port/private/*.h \
14 src/osx/*.cpp \
15 src/osx/core/*.cpp \
16 src/osx/$osx_port/*.{cpp,mm}