share/hedgewars/Data/Fonts/CMakeLists.txt
author antonc27 <antonc27@mail.ru>
Sun, 15 Nov 2015 14:40:51 +0100
branchios-revival
changeset 11392 7038ecc1f7fa
parent 9994 8455993a7a1b
permissions -rw-r--r--
Added tag Hedgewars-iOS-2.0 for changeset a0163b8302c5

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