comparison doc/CMakeLists.txt @ 207:6635b9187d71

Irccd: switch to 4 spaces indent, #518
author David Demelier <markand@malikania.fr>
date Tue, 21 Jun 2016 20:52:17 +0200
parents 0ff84eeea2b0
children 0be0f1b863eb
comparison
equal deleted inserted replaced
206:11808e98218f 207:6635b9187d71
18 18
19 project(doc) 19 project(doc)
20 20
21 # Meta targets `docs` 21 # Meta targets `docs`
22 add_custom_target( 22 add_custom_target(
23 all-docs ALL 23 all-docs ALL
24 COMMENT "Building irccd documentation" 24 COMMENT "Building irccd documentation"
25 ) 25 )
26 26
27 set_target_properties( 27 set_target_properties(
28 all-docs 28 all-docs
29 PROPERTIES 29 PROPERTIES
30 FOLDER meta 30 FOLDER meta
31 ) 31 )
32 32
33 if (WITH_DOXYGEN) 33 if (WITH_DOXYGEN)
34 add_subdirectory(doxygen) 34 add_subdirectory(doxygen)
35 endif () 35 endif ()
36 36
37 add_subdirectory(examples) 37 add_subdirectory(examples)
38 add_subdirectory(man) 38 add_subdirectory(man)
39 39
40 if (WITH_HTML) 40 if (WITH_HTML)
41 add_subdirectory(html) 41 add_subdirectory(html)
42 endif () 42 endif ()