1# CMake build for libtiff
2#
3# Copyright © 2015 Open Microscopy Environment / University of Dundee
4# Written by Roger Leigh <rleigh@codelibre.net>
5#
6# Permission to use, copy, modify, distribute, and sell this software and
7# its documentation for any purpose is hereby granted without fee, provided
8# that (i) the above copyright notices and this permission notice appear in
9# all copies of the software and related documentation, and (ii) the names of
10# Sam Leffler and Silicon Graphics may not be used in any advertising or
11# publicity relating to the software without the specific, prior written
12# permission of Sam Leffler and Silicon Graphics.
13#
14# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
15# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
16# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
17#
18# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
19# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
20# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
21# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
22# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23# OF THIS SOFTWARE.
24
25set(man1_MANS
26  fax2ps.1
27  fax2tiff.1
28  pal2rgb.1
29  ppm2tiff.1
30  raw2tiff.1
31  tiff2bw.1
32  tiff2pdf.1
33  tiff2ps.1
34  tiff2rgba.1
35  tiffcmp.1
36  tiffcp.1
37  tiffcrop.1
38  tiffdither.1
39  tiffdump.1
40  tiffgt.1
41  tiffinfo.1
42  tiffmedian.1
43  tiffset.1
44  tiffsplit.1)
45
46set(man3_MANS
47  libtiff.3tiff
48  TIFFbuffer.3tiff
49  TIFFClose.3tiff
50  TIFFcodec.3tiff
51  TIFFcolor.3tiff
52  TIFFDataWidth.3tiff
53  TIFFError.3tiff
54  TIFFFieldDataType.3tiff
55  TIFFFieldName.3tiff
56  TIFFFieldPassCount.3tiff
57  TIFFFieldReadCount.3tiff
58  TIFFFieldTag.3tiff
59  TIFFFieldWriteCount.3tiff
60  TIFFFlush.3tiff
61  TIFFGetField.3tiff
62  TIFFmemory.3tiff
63  TIFFOpen.3tiff
64  TIFFPrintDirectory.3tiff
65  TIFFquery.3tiff
66  TIFFReadDirectory.3tiff
67  TIFFReadEncodedStrip.3tiff
68  TIFFReadEncodedTile.3tiff
69  TIFFReadRawStrip.3tiff
70  TIFFReadRawTile.3tiff
71  TIFFReadRGBAImage.3tiff
72  TIFFReadRGBAStrip.3tiff
73  TIFFReadRGBATile.3tiff
74  TIFFReadScanline.3tiff
75  TIFFReadTile.3tiff
76  TIFFRGBAImage.3tiff
77  TIFFSetDirectory.3tiff
78  TIFFSetField.3tiff
79  TIFFsize.3tiff
80  TIFFstrip.3tiff
81  TIFFswab.3tiff
82  TIFFtile.3tiff
83  TIFFWarning.3tiff
84  TIFFWriteDirectory.3tiff
85  TIFFWriteEncodedStrip.3tiff
86  TIFFWriteEncodedTile.3tiff
87  TIFFWriteRawStrip.3tiff
88  TIFFWriteRawTile.3tiff
89  TIFFWriteScanline.3tiff
90  TIFFWriteTile.3tiff)
91
92install(FILES ${man1_MANS}
93        DESTINATION "${CMAKE_INSTALL_FULL_MANDIR}/man1")
94install(FILES ${man3_MANS}
95        DESTINATION "${CMAKE_INSTALL_FULL_MANDIR}/man3")
96
97extra_dist(${man1_MANS} ${man3_MANS})
98