CMake: Place all of the documentation in the "Documentation" folder.

This commit is contained in:
Gerald Combs 2021-10-20 15:23:19 -07:00 committed by Wireshark GitLab Utility
parent a48645e142
commit 2c3b13834d
4 changed files with 6 additions and 6 deletions

View File

@ -3563,7 +3563,7 @@ if (DOXYGEN_EXECUTABLE)
DEPENDS wsar_html_perms
)
set_target_properties(wsar_html wsar_html_zip PROPERTIES
FOLDER "Docs"
FOLDER "Documentation"
EXCLUDE_FROM_DEFAULT_BUILD True
)
endif(DOXYGEN_EXECUTABLE)
@ -3669,7 +3669,7 @@ if (GIT_EXECUTABLE)
else (GIT_EXECUTABLE)
add_custom_target( gen-authors COMMAND ${CMAKE_COMMAND} -E echo "Git not found." )
endif (GIT_EXECUTABLE)
set_target_properties(gen-authors PROPERTIES FOLDER "Docs")
set_target_properties(gen-authors PROPERTIES FOLDER "Documentation")
if (WIN32)
file (TO_NATIVE_PATH ${CMAKE_SOURCE_DIR}/tools/Get-HardenFlags.ps1 _win_harden_flags)

View File

@ -31,7 +31,7 @@ if(ASCIIDOCTOR_EXECUTABLE)
function(set_asciidoctor_target_properties _target)
set_target_properties(${_target} PROPERTIES
FOLDER "Docbook"
FOLDER "Documentation"
EXCLUDE_FROM_DEFAULT_BUILD True
)
endfunction(set_asciidoctor_target_properties)

View File

@ -97,7 +97,7 @@ if(ASCIIDOCTOR_FOUND)
${MAN1_INSTALL_FILES}
${MAN4_INSTALL_FILES}
)
set_target_properties(manpages PROPERTIES FOLDER "Docs")
set_target_properties(manpages PROPERTIES FOLDER "Documentation")
endif()
add_custom_target(
@ -108,7 +108,7 @@ add_custom_target(
${MAN4_INSTALL_FILES}
${HTML_INSTALL_FILES}
)
set_target_properties(docs PROPERTIES FOLDER "Docs")
set_target_properties(docs PROPERTIES FOLDER "Documentation")
if(ASCIIDOCTOR_FOUND)
install(

View File

@ -16,7 +16,7 @@ find_package( XSLTPROC )
function(set_docbook_target_properties _target)
set_target_properties(${_target} PROPERTIES
FOLDER "Docbook"
FOLDER "Documentation"
EXCLUDE_FROM_DEFAULT_BUILD True
)
endfunction(set_docbook_target_properties)