Fix crash when auto-sizing a wxDataViewCtrl column.
[wxWidgets.git] / misc / scripts / makeosxtags.sh
1 #!/bin/sh
2 . `dirname $0`/makeunixtags.sh
3 create_tags osx
4
5 osx_port=${1-cocoa}
6 if [[ $osx_port = carbon ]]; then
7 ext=cpp
8 else
9 ext=mm
10 fi
11
12 ctags --totals --c++-kinds=+px --language-force=c++ \
13 -f osx_$osx_port.tags \
14 -I @misc/scripts/ctags.ignore \
15 include/wx/osx/core/*.h \
16 include/wx/osx/core/private/*.h \
17 include/wx/osx/private/*.h \
18 include/wx/osx/$osx_port/*.h \
19 include/wx/osx/$osx_port/private/*.h \
20 src/osx/core/*.cpp \
21 src/osx/$osx_port/*.$ext