diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-12-28 16:52:56 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-12-28 16:52:56 +0100 |
commit | 7b358424ebad9349421acd533c2fa1cbf6cf3e3e (patch) | |
tree | 686678532eefed525c242fd214d0cfb2914726c5 /app/tools/halibut/CMakeLists.txt |
Initial import of xtrkcad version 1:4.0.2-2
Diffstat (limited to 'app/tools/halibut/CMakeLists.txt')
-rw-r--r-- | app/tools/halibut/CMakeLists.txt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app/tools/halibut/CMakeLists.txt b/app/tools/halibut/CMakeLists.txt new file mode 100644 index 0000000..ec7d74b --- /dev/null +++ b/app/tools/halibut/CMakeLists.txt @@ -0,0 +1,32 @@ +SET(SOURCES + 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 + ) + +INCLUDE_DIRECTORIES(charset) +ADD_EXECUTABLE(halibut ${SOURCES}) +TARGET_LINK_LIBRARIES(halibut xtrkcad-charset) + +ADD_SUBDIRECTORY(charset) + |