]>
Commit | Line | Data |
---|---|---|
e4de95f8 | 1 | #!/bin/sh |
53a9325a | 2 | ctags --totals --language-force=c++ -I WXDLLEXPORT \ |
e4de95f8 | 3 | include/wx/*.h \ |
069a4f3c | 4 | include/wx/aui/*.h \ |
e4de95f8 | 5 | include/wx/generic/*.h \ |
7182d62a VZ |
6 | include/wx/gtk/*.h \ |
7 | include/wx/html/*.h \ | |
e4de95f8 | 8 | include/wx/protocol/*.h \ |
069a4f3c | 9 | include/wx/richtext/*.h \ |
7182d62a VZ |
10 | include/wx/xml/*.h \ |
11 | include/wx/xrc/*.h \ | |
e4de95f8 | 12 | include/wx/unix/*.h \ |
069a4f3c | 13 | src/aui/*.cpp \ |
e4de95f8 VZ |
14 | src/common/*.cpp \ |
15 | src/generic/*.cpp \ | |
16 | src/gtk/*.cpp \ | |
17 | src/html/*.cpp \ | |
069a4f3c | 18 | src/richtext/*.cpp \ |
7182d62a VZ |
19 | src/unix/*.cpp \ |
20 | src/xml/*.cpp \ | |
21 | src/xrc/*.cpp | |
e4de95f8 | 22 |