File: CMakeLists.txt

package info (click to toggle)
hershey-fonts 0.1-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 440 kB
  • sloc: ansic: 397; python: 40; sh: 31; makefile: 6
file content (19 lines) | stat: -rw-r--r-- 635 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# hershey-fonts - Copyright (C) 2013 Kamal Mostafa <kamal@whence.com>
#
# License: GPL-2+
#

cmake_minimum_required(VERSION 2.6)

include_directories (../libhersheyfont)
link_directories (${CMAKE_BINARY_DIR}/../libhersheyfont)

add_executable(hershey-font-check		hershey-font-check.c)
target_link_libraries(hershey-font-check	hersheyfont)
# install(TARGETS hershey-font-check		DESTINATION bin)

add_executable(hershey-font-gnuplot		hershey-font-gnuplot.c)
target_link_libraries(hershey-font-gnuplot	hersheyfont)
install(TARGETS hershey-font-gnuplot		DESTINATION bin)
install(FILES hershey-font-gnuplot.1		DESTINATION share/man/man1)