]> granicus.if.org Git - icinga2/blobdiff - doc/CMakeLists.txt
Add check_openmanage command to ITL.
[icinga2] / doc / CMakeLists.txt
index 5727d7eb696d83ee2e410ca4ab3f339b7c2ed23e..9ca0bb5c6ca270b7e86910c5da4b8f5cfee5d152 100644 (file)
@@ -1,5 +1,5 @@
 # Icinga 2
-# Copyright (C) 2012-2013 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.
 
-install(
-  DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
-  DESTINATION ${CMAKE_INSTALL_DOCDIR}  FILES_MATCHING PATTERN *.md
-)
+file(GLOB DOCSRCS "*.md")
 
 if(UNIX OR CYGWIN)
   install(
     FILES icinga2.8
     DESTINATION ${CMAKE_INSTALL_MANDIR}/man8
   )
-endif()
\ No newline at end of file
+endif()
+
+install(
+  FILES ${DOCSRCS}
+  DESTINATION ${CMAKE_INSTALL_DOCDIR}/markdown
+)
+
+install(
+  DIRECTORY images
+  DESTINATION ${CMAKE_INSTALL_DOCDIR}/markdown
+)