17 lines
371 B
CMake
17 lines
371 B
CMake
if(NOT NEOCHAT_FLATPAK)
|
|
# Only include this if we build a Flatpak
|
|
return()
|
|
endif()
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
# Include FontConfig config which uses the Emoji One font from the
|
|
# KDE Flatpak SDK.
|
|
install(
|
|
FILES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake/Flatpak/99-noto-mono-color-emoji.conf
|
|
DESTINATION
|
|
${CMAKE_INSTALL_SYSCONFDIR}/fonts/conf.d/
|
|
)
|
|
|