]> granicus.if.org Git - icinga2/blob - doc/CMakeLists.txt
Fix installing htdocs files.
[icinga2] / doc / CMakeLists.txt
1 # Icinga 2
2 # Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org)
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation
16 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 if(UNIX OR CYGWIN)
19   file(GLOB DOCSRCS "*.md")
20
21   add_custom_command(
22     OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/htdocs/index.html
23     COMMAND ./mkdoc.sh
24     ARGS ${CMAKE_CURRENT_BINARY_DIR}
25     WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
26     DEPENDS ${DOCSRCS}
27   )
28
29   install(
30     DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/htdocs
31     DESTINATION ${CMAKE_INSTALL_DOCDIR}
32   )
33
34   add_custom_target(index-html ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/htdocs/index.html)
35
36   install(
37     FILES icinga2.8
38     DESTINATION ${CMAKE_INSTALL_MANDIR}/man8
39   )
40 endif()