share/hedgewars/Data/Fonts/CMakeLists.txt
author Vittorio Giovara <vittorio.giovara@gmail.com>
Sat, 07 Nov 2015 17:33:43 +0100
changeset 11318 78d8255349d3
parent 9994 8455993a7a1b
permissions -rw-r--r--
Add markdown extension to README so github can render it more nicely Keep a link to the standard README file too.

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()