diff options
Diffstat (limited to '3rdparty/glfw/source/docs/CMakeLists.txt')
-rw-r--r-- | 3rdparty/glfw/source/docs/CMakeLists.txt | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/3rdparty/glfw/source/docs/CMakeLists.txt b/3rdparty/glfw/source/docs/CMakeLists.txt new file mode 100644 index 0000000..79cad56 --- /dev/null +++ b/3rdparty/glfw/source/docs/CMakeLists.txt @@ -0,0 +1,46 @@ + +# NOTE: The order of this list determines the order of items in the Guides +# (i.e. Pages) list in the generated documentation +set(source_files + main.dox + news.dox + quick.dox + moving.dox + compile.dox + build.dox + intro.dox + context.dox + monitor.dox + window.dox + input.dox + vulkan.dox + compat.dox + internal.dox) + +set(extra_files DoxygenLayout.xml header.html footer.html extra.css spaces.svg) + +set(header_paths + "${GLFW_SOURCE_DIR}/include/GLFW/glfw3.h" + "${GLFW_SOURCE_DIR}/include/GLFW/glfw3native.h") + +# Format the source list into a Doxyfile INPUT value that Doxygen can parse +foreach(path IN LISTS header_paths) + string(APPEND GLFW_DOXYGEN_INPUT " \\\n\"${path}\"") +endforeach() +foreach(file IN LISTS source_files) + string(APPEND GLFW_DOXYGEN_INPUT " \\\n\"${CMAKE_CURRENT_SOURCE_DIR}/${file}\"") +endforeach() + +configure_file(Doxyfile.in Doxyfile @ONLY) + +add_custom_command(OUTPUT "html/index.html" + COMMAND "${DOXYGEN_EXECUTABLE}" + WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" + MAIN_DEPENDENCY Doxyfile + DEPENDS ${header_paths} ${source_files} ${extra_files} + COMMENT "Generating HTML documentation" + VERBATIM) + +add_custom_target(docs ALL SOURCES "html/index.html") +set_target_properties(docs PROPERTIES FOLDER "GLFW3") + |