doc: cmake: move pristine to a separate section

Move 'pristine' target to 'others' section.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2021-06-17 12:16:55 +02:00 committed by Carles Cufí
parent 0db41264f1
commit 5fe1694ec9

View file

@ -97,11 +97,6 @@ set_target_properties(
ADDITIONAL_CLEAN_FILES "${DOXY_OUT}"
)
add_custom_target(
pristine
COMMAND ${CMAKE_COMMAND} -P ${ZEPHYR_BASE}/cmake/pristine.cmake
)
#-------------------------------------------------------------------------------
# kconfig
@ -257,3 +252,11 @@ if(LATEX_PDFLATEX_FOUND AND LATEXMK)
add_dependencies(pdf latex)
endif()
#-------------------------------------------------------------------------------
# others
add_custom_target(
pristine
COMMAND ${CMAKE_COMMAND} -P ${ZEPHYR_BASE}/cmake/pristine.cmake
)