Fix annoying warning when running the script to generate tags under OS X.
It complained about no matches for src/osx/cocoa/*.cpp. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
cabc71dee3
commit
187fad412a
@ -3,6 +3,12 @@
|
|||||||
create_tags osx
|
create_tags osx
|
||||||
|
|
||||||
osx_port=${1-carbon}
|
osx_port=${1-carbon}
|
||||||
|
if [[ $osx_port = carbon ]]; then
|
||||||
|
ext=cpp
|
||||||
|
else
|
||||||
|
ext=mm
|
||||||
|
fi
|
||||||
|
|
||||||
ctags --totals --c++-kinds=+px --language-force=c++ \
|
ctags --totals --c++-kinds=+px --language-force=c++ \
|
||||||
-f osx_$osx_port.tags \
|
-f osx_$osx_port.tags \
|
||||||
-I @misc/scripts/ctags.ignore \
|
-I @misc/scripts/ctags.ignore \
|
||||||
@ -12,4 +18,4 @@ ctags --totals --c++-kinds=+px --language-force=c++ \
|
|||||||
include/wx/osx/$osx_port/*.h \
|
include/wx/osx/$osx_port/*.h \
|
||||||
include/wx/osx/$osx_port/private/*.h \
|
include/wx/osx/$osx_port/private/*.h \
|
||||||
src/osx/core/*.cpp \
|
src/osx/core/*.cpp \
|
||||||
src/osx/$osx_port/*.{cpp,mm}
|
src/osx/$osx_port/*.$ext
|
||||||
|
Loading…
Reference in New Issue
Block a user