blob: a4ddc75390d754b46909c85acd703a9d9f202e81 (
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
33
34
35
|
add_executable(halibut
biblio.c
bk_html.c
contents.c
deflate.c
error.c
halibut.h
help.c
index.c
input.c
in_pf.c
in_afm.c
psdata.c
bk_paper.c
keywords.c
licence.c
main.c
malloc.c
misc.c
tree234.c
tree234.h
ustring.c
version.c
wcwidth.c
)
set_target_properties(
halibut
PROPERTIES FOLDER HelpDocs
)
target_link_libraries(halibut xtrkcad-charset)
add_subdirectory(charset)
|