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(docfiles
26  addingtags.html
27  bugs.html
28  build.html
29  contrib.html
30  document.html
31  images.html
32  index.html
33  internals.html
34  intro.html
35  libtiff.html
36  misc.html
37  support.html
38  TIFFTechNote2.html
39  tools.html
40  v3.4beta007.html
41  v3.4beta016.html
42  v3.4beta018.html
43  v3.4beta024.html
44  v3.4beta028.html
45  v3.4beta029.html
46  v3.4beta031.html
47  v3.4beta032.html
48  v3.4beta033.html
49  v3.4beta034.html
50  v3.4beta035.html
51  v3.4beta036.html
52  v3.5.1.html
53  v3.5.2.html
54  v3.5.3.html
55  v3.5.4.html
56  v3.5.5.html
57  v3.5.6-beta.html
58  v3.5.7.html
59  v3.6.0.html
60  v3.6.1.html
61  v3.7.0alpha.html
62  v3.7.0beta.html
63  v3.7.0beta2.html
64  v3.7.0.html
65  v3.7.1.html
66  v3.7.2.html
67  v3.7.3.html
68  v3.7.4.html
69  v3.8.0.html
70  v3.8.1.html
71  v3.8.2.html
72  v3.9.0beta.html
73  v3.9.1.html
74  v3.9.2.html
75  v4.0.0.html
76  v4.0.1.html
77  v4.0.2.html
78  v4.0.3.html
79  v4.0.4beta.html)
80
81install(FILES ${docfiles}
82        DESTINATION "${LIBTIFF_DOCDIR}/html")
83
84add_subdirectory(images)
85add_subdirectory(man)
86
87extra_dist(${docfiles})
88