comparison doc/CMakeLists.txt @ 138:ff26bd33a45d

CMake: improve VS2015 support, #425
author David Demelier <markand@malikania.fr>
date Thu, 19 May 2016 13:00:00 +0200
parents 113d909fdfe1
children 0ff84eeea2b0
comparison
equal deleted inserted replaced
137:bc291b131f6a 138:ff26bd33a45d
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 docs ALL 23 all-docs ALL
24 COMMENT "Building irccd documentation" 24 COMMENT "Building irccd documentation"
25 SOURCES 25 SOURCES
26 ${doc_SOURCE_DIR}/procs/README.md 26 ${doc_SOURCE_DIR}/procs/README.md
27 ${doc_SOURCE_DIR}/procs/00.tests.md 27 ${doc_SOURCE_DIR}/procs/00.tests.md
28 ${doc_SOURCE_DIR}/procs/00.new-release.md 28 ${doc_SOURCE_DIR}/procs/00.new-release.md
29 ${doc_SOURCE_DIR}/procs/20.options.md 29 ${doc_SOURCE_DIR}/procs/20.options.md
30 ${doc_SOURCE_DIR}/procs/30.options.md 30 ${doc_SOURCE_DIR}/procs/30.options.md
31 ${doc_SOURCE_DIR}/procs/60.new-command.md 31 ${doc_SOURCE_DIR}/procs/60.new-command.md
32 ) 32 )
33 33
34 # Needed for fakeroot 34 set_target_properties(
35 all-docs
36 PROPERTIES
37 FOLDER meta
38 )
39
35 if (WITH_DOXYGEN) 40 if (WITH_DOXYGEN)
36 add_subdirectory(doxygen) 41 add_subdirectory(doxygen)
37 endif () 42 endif ()
38 43
39 add_subdirectory(examples) 44 add_subdirectory(examples)