Skip to content

Commit f7560ee

Browse files
ichaerowenca
andauthored
[clang-format] Add cmake target clang-format-style-options for updating ClangFormatStyleOptions.rst (llvm#111513)
* Create a new `clang-format-style-options` build target which re-generates ClangFormatStyleOptions.rst from its source header files. As discussed in llvm#96804 (comment) --------- Co-authored-by: Owen Pan <[email protected]>
1 parent 71ac1eb commit f7560ee

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

clang/lib/Format/CMakeLists.txt

+10
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,13 @@ foreach (file IN LISTS files)
5353
endforeach ()
5454

5555
add_custom_target(clang-format-check-format DEPENDS ${check_format_depends})
56+
57+
set(style_options_depends ${CLANG_SOURCE_DIR}/docs/ClangFormatStyleOptions.rst)
58+
add_custom_command(OUTPUT ${style_options_depends}
59+
COMMAND ${Python3_EXECUTABLE} dump_format_style.py
60+
WORKING_DIRECTORY ${CLANG_SOURCE_DIR}/docs/tools
61+
DEPENDS ${CLANG_SOURCE_DIR}/include/clang/Format/Format.h
62+
${CLANG_SOURCE_DIR}/include/clang/Tooling/Inclusions/IncludeStyle.h
63+
)
64+
add_custom_target(clang-format-style-options DEPENDS ${style_options_depends})
65+
add_dependencies(clangFormat clang-format-style-options)

0 commit comments

Comments
 (0)