blob: e1ed47dc112e64bfe7fe6db39813b52cc23365d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
###############################################################################
# tuxanci/data/font/CMakeLists.txt
###############################################################################
# DIRECTORIES
###############################################################################
# nada :P
###############################################################################
# CURRENT DIRECTORY FILES
###############################################################################
IF ( NOT Server )
FILE ( GLOB files "*.ttf" )
INSTALL ( FILES ${files}
DESTINATION ${CMAKE_INSTALL_DATADIR}/${APPNAME}-${TUXANCI_VERSION}/font/ )
ENDIF ( NOT Server )
###############################################################################
|