]> granicus.if.org Git - icinga2/blobdiff - doc/CMakeLists.txt
ITL: Fix missing double quote in ssl-cert CheckCommand
[icinga2] / doc / CMakeLists.txt
index 2a2ea4bf39e4179ff6257b4f5c6dc46216e4535d..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
 # along with this program; if not, write to the Free Software Foundation
 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
-if(UNIX OR CYGWIN)
-  file(GLOB DOCSRCS "*.md")
-
-  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}
-  )
-
-  add_custom_target(index-html ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/htdocs/index.html)
+file(GLOB DOCSRCS "*.md")
 
+if(UNIX OR CYGWIN)
   install(
     FILES icinga2.8
     DESTINATION ${CMAKE_INSTALL_MANDIR}/man8
   )
 endif()
+
+install(
+  FILES ${DOCSRCS}
+  DESTINATION ${CMAKE_INSTALL_DOCDIR}/markdown
+)