]> granicus.if.org Git - icinga2/blob - doc/CMakeLists.txt
Update copyright header.
[icinga2] / doc / CMakeLists.txt
1 # Icinga 2
2 # Copyright (C) 2012-present 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   # TODO: dependencies
20   add_custom_command(
21     OUTPUT index.html
22     COMMAND ./mkdoc.sh
23     ARGS > ${CMAKE_CURRENT_BINARY_DIR}/index.html.tmp
24     COMMAND ${CMAKE_COMMAND}
25     ARGS -E copy ${CMAKE_CURRENT_BINARY_DIR}/index.html.tmp ${CMAKE_CURRENT_BINARY_DIR}/index.html
26     WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
27   )
28
29   add_custom_target(index-html ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/index.html)
30
31   install(
32     FILES ${CMAKE_CURRENT_BINARY_DIR}/index.html jquery.min.js jquery.toc.min.js toc.css toc-margin.css toc-print.css
33     DESTINATION ${CMAKE_INSTALL_DOCDIR}/htdocs
34   )
35
36   install(
37     DIRECTORY strapdownjs
38     DESTINATION ${CMAKE_INSTALL_DOCDIR}/htdocs
39   )
40
41   install(
42     FILES icinga2.8
43     DESTINATION ${CMAKE_INSTALL_MANDIR}/man8
44   )
45 endif()