]> granicus.if.org Git - icinga2/blobdiff - doc/CMakeLists.txt
ITL: Fix missing double quote in ssl-cert CheckCommand
[icinga2] / doc / CMakeLists.txt
index 789b601907edd9f3321848f986f715333aa90195..0738fc11a27f6a36a0015dd70a33547c57cc348d 100644 (file)
@@ -1,5 +1,5 @@
 # Icinga 2
-# Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org)
+# Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/)
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
 file(GLOB DOCSRCS "*.md")
 
 if(UNIX OR CYGWIN)
-  add_custom_command(
-    OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/htdocs/index.html
-    COMMAND ./mkdoc.sh
-    ARGS ${CMAKE_CURRENT_BINARY_DIR}
-    WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
-    DEPENDS ${DOCSRCS}
-  )
-
-  install(
-    DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/htdocs
-    DESTINATION ${CMAKE_INSTALL_DOCDIR}
-  )
-
-  add_custom_target(index-html ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/htdocs/index.html)
-
   install(
     FILES icinga2.8
     DESTINATION ${CMAKE_INSTALL_MANDIR}/man8
   )
 endif()
 
-# pandoc is not available or working everywhere, so install the unprocessed markdown files too
 install(
   FILES ${DOCSRCS}
   DESTINATION ${CMAKE_INSTALL_DOCDIR}/markdown
 )
-
-if(UNIX OR CYGWIN)
-  # maybe someone wants to process his own doc files after installing current pandoc/sphinx
-  install(
-    FILES conf.py mkdoc.sh
-    DESTINATION ${CMAKE_INSTALL_DOCDIR}/markdown
-  )
-endif()