blob: e61aa959b143a6c2e1cba2f1343228693ced15d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#################################################
#
# (C) 2010-2011 Serghei Amelian
# serghei (DOT) amelian (AT) gmail.com
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
install( FILES
${CMAKE_CURRENT_BINARY_DIR}/console8x16.pcf.gz
${CMAKE_CURRENT_BINARY_DIR}/9x15.pcf.gz
DESTINATION ${DATA_INSTALL_DIR}/konsole/fonts )
# FIXME this should be improved, to guarantee that mkfontdir is executed after fonts are installed
install( CODE "execute_process( COMMAND mkfontdir \$ENV{DESTDIR}${DATA_INSTALL_DIR}/konsole/fonts )" )
# FIXME generating fonts can be improved
add_custom_target( console8x16.pcf.gz ALL )
add_custom_command( TARGET console8x16.pcf.gz
COMMAND bdftopcf -o console8x16.pcf ${CMAKE_CURRENT_SOURCE_DIR}/console8x16.bdf
COMMAND gzip -f --best console8x16.pcf
DEPENDS console8x16.bdf )
add_custom_target( 9x15.pcf.gz ALL )
add_custom_command( TARGET 9x15.pcf.gz
COMMAND bdftopcf -o 9x15.pcf ${CMAKE_CURRENT_SOURCE_DIR}/9x15.bdf
COMMAND gzip -f --best 9x15.pcf
DEPENDS 9x15.bdf )
|