Blame html/CMakeLists.txt

Packit 7838c8
# CMake build for libtiff
Packit 7838c8
#
Packit 7838c8
# Copyright © 2015 Open Microscopy Environment / University of Dundee
Packit 7838c8
# Written by Roger Leigh <rleigh@codelibre.net>
Packit 7838c8
#
Packit 7838c8
# Permission to use, copy, modify, distribute, and sell this software and
Packit 7838c8
# its documentation for any purpose is hereby granted without fee, provided
Packit 7838c8
# that (i) the above copyright notices and this permission notice appear in
Packit 7838c8
# all copies of the software and related documentation, and (ii) the names of
Packit 7838c8
# Sam Leffler and Silicon Graphics may not be used in any advertising or
Packit 7838c8
# publicity relating to the software without the specific, prior written
Packit 7838c8
# permission of Sam Leffler and Silicon Graphics.
Packit 7838c8
#
Packit 7838c8
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
Packit 7838c8
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
Packit 7838c8
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Packit 7838c8
#
Packit 7838c8
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
Packit 7838c8
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
Packit 7838c8
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
Packit 7838c8
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
Packit 7838c8
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
Packit 7838c8
# OF THIS SOFTWARE.
Packit 7838c8
Packit 7838c8
set(docfiles
Packit 7838c8
  addingtags.html
Packit 7838c8
  bugs.html
Packit 7838c8
  build.html
Packit 7838c8
  contrib.html
Packit 7838c8
  document.html
Packit 7838c8
  images.html
Packit 7838c8
  index.html
Packit 7838c8
  internals.html
Packit 7838c8
  intro.html
Packit 7838c8
  libtiff.html
Packit 7838c8
  misc.html
Packit 7838c8
  support.html
Packit 7838c8
  TIFFTechNote2.html
Packit 7838c8
  tools.html
Packit 7838c8
  v3.4beta007.html
Packit 7838c8
  v3.4beta016.html
Packit 7838c8
  v3.4beta018.html
Packit 7838c8
  v3.4beta024.html
Packit 7838c8
  v3.4beta028.html
Packit 7838c8
  v3.4beta029.html
Packit 7838c8
  v3.4beta031.html
Packit 7838c8
  v3.4beta032.html
Packit 7838c8
  v3.4beta033.html
Packit 7838c8
  v3.4beta034.html
Packit 7838c8
  v3.4beta035.html
Packit 7838c8
  v3.4beta036.html
Packit 7838c8
  v3.5.1.html
Packit 7838c8
  v3.5.2.html
Packit 7838c8
  v3.5.3.html
Packit 7838c8
  v3.5.4.html
Packit 7838c8
  v3.5.5.html
Packit 7838c8
  v3.5.6-beta.html
Packit 7838c8
  v3.5.7.html
Packit 7838c8
  v3.6.0.html
Packit 7838c8
  v3.6.1.html
Packit 7838c8
  v3.7.0alpha.html
Packit 7838c8
  v3.7.0beta.html
Packit 7838c8
  v3.7.0beta2.html
Packit 7838c8
  v3.7.0.html
Packit 7838c8
  v3.7.1.html
Packit 7838c8
  v3.7.2.html
Packit 7838c8
  v3.7.3.html
Packit 7838c8
  v3.7.4.html
Packit 7838c8
  v3.8.0.html
Packit 7838c8
  v3.8.1.html
Packit 7838c8
  v3.8.2.html
Packit 7838c8
  v3.9.0beta.html
Packit 7838c8
  v3.9.1.html
Packit 7838c8
  v3.9.2.html
Packit 7838c8
  v4.0.0.html
Packit 7838c8
  v4.0.1.html
Packit 7838c8
  v4.0.2.html
Packit 7838c8
  v4.0.3.html
Packit 7838c8
  v4.0.4beta.html)
Packit 7838c8
Packit 7838c8
install(FILES ${docfiles}
Packit 7838c8
        DESTINATION "${LIBTIFF_DOCDIR}/html")
Packit 7838c8
Packit 7838c8
add_subdirectory(images)
Packit 7838c8
add_subdirectory(man)
Packit 7838c8
Packit 7838c8
extra_dist(${docfiles})