|
|
@ -1,24 +1,27 @@ |
|
|
|
|
|
|
|
|
|
|
|
set(glfw_DOCS_SOURCES |
|
|
|
# NOTE: The order of this list determines the order of items in the Guides |
|
|
|
"${GLFW_SOURCE_DIR}/include/GLFW/glfw3.h" |
|
|
|
# (i.e. Pages) list in the generated documentation |
|
|
|
"${GLFW_SOURCE_DIR}/include/GLFW/glfw3native.h" |
|
|
|
set(GLFW_DOXYGEN_SOURCES |
|
|
|
"${GLFW_SOURCE_DIR}/docs/main.dox" |
|
|
|
"include/GLFW/glfw3.h" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/news.dox" |
|
|
|
"include/GLFW/glfw3native.h" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/quick.dox" |
|
|
|
"docs/main.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/moving.dox" |
|
|
|
"docs/news.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/compile.dox" |
|
|
|
"docs/quick.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/build.dox" |
|
|
|
"docs/moving.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/intro.dox" |
|
|
|
"docs/compile.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/context.dox" |
|
|
|
"docs/build.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/monitor.dox" |
|
|
|
"docs/intro.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/window.dox" |
|
|
|
"docs/context.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/input.dox" |
|
|
|
"docs/monitor.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/vulkan.dox" |
|
|
|
"docs/window.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/compat.dox" |
|
|
|
"docs/input.dox" |
|
|
|
"${GLFW_SOURCE_DIR}/docs/internal.dox") |
|
|
|
"docs/vulkan.dox" |
|
|
|
|
|
|
|
"docs/compat.dox" |
|
|
|
|
|
|
|
"docs/internal.dox") |
|
|
|
|
|
|
|
|
|
|
|
foreach(arg ${glfw_DOCS_SOURCES}) |
|
|
|
# Format the source list into a Doxyfile INPUT value that Doxygen can parse |
|
|
|
set(GLFW_DOCS_SOURCES "${GLFW_DOCS_SOURCES} \\\n\"${arg}\"") |
|
|
|
foreach(path IN LISTS GLFW_DOXYGEN_SOURCES) |
|
|
|
|
|
|
|
set(GLFW_DOXYGEN_INPUT "${GLFW_DOXYGEN_INPUT} \\\n\"${GLFW_SOURCE_DIR}/${path}\"") |
|
|
|
endforeach() |
|
|
|
endforeach() |
|
|
|
|
|
|
|
|
|
|
|
configure_file(Doxyfile.in Doxyfile @ONLY) |
|
|
|
configure_file(Doxyfile.in Doxyfile @ONLY) |
|
|
|