blob: e3353a7835b9c8e4befa252385f9cca6c787a7d6 (
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
|
#################################################
#
# (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 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 )
|