]>
Commit | Line | Data |
---|---|---|
61dabbff VZ |
1 | #!/bin/sh |
2 | . `dirname $0`/makeunixtags.sh | |
43929306 | 3 | create_tags osx |
61dabbff | 4 | |
c2d4b697 | 5 | osx_port=${1-cocoa} |
187fad41 VZ |
6 | if [[ $osx_port = carbon ]]; then |
7 | ext=cpp | |
8 | else | |
9 | ext=mm | |
10 | fi | |
11 | ||
61dabbff VZ |
12 | ctags --totals --c++-kinds=+px --language-force=c++ \ |
13 | -f osx_$osx_port.tags \ | |
14 | -I @misc/scripts/ctags.ignore \ | |
61dabbff VZ |
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 \ | |
61dabbff | 20 | src/osx/core/*.cpp \ |
187fad41 | 21 | src/osx/$osx_port/*.$ext |