Fix uGearsHandlersMess.pas changes lost in merge
r1c02143bfe9c.
This seems to only include the drill rocket fixes (
re0dd66b2e73b and
r8db0c56f7e2f ) as well as the initial cake push (
r8786d4ac9e0b )
set(FONTFILES
DejaVuSans-Bold.ttf
wqy-zenhei.ttc)
if (FONTS_DIRS)
foreach(fontfile ${FONTFILES})
set(missing 1)
foreach(fontdir ${FONTS_DIRS})
if (EXISTS "${fontdir}/${fontfile}")
message(STATUS "Fonts: Found ${fontfile} in ${fontdir}")
set(missing 0)
break()
endif()
endforeach(fontdir)
if(missing)
set(MISSINGFONTFILES ${MISSINGFONTFILES} ${fontfile})
message(STATUS "Fonts: Could not find ${fontfile}, it will be installed")
endif()
endforeach(fontfile)
else()
set(MISSINGFONTFILES ${FONTFILES})
endif()
if (MISSINGFONTFILES)
install(FILES ${MISSINGFONTFILES} DESTINATION ${SHAREPATH}Data/Fonts)
endif()