[PATCH] D130701: [clang-tidy] Rename a local cmake variables to match the new tool name. NFC.
Martin Storsjö via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 28 04:16:19 PDT 2022
mstorsjo created this revision.
mstorsjo added a reviewer: sammccall.
Herald added subscribers: carlosgalvezp, xazax.hun, mgorny.
Herald added a project: All.
mstorsjo requested review of this revision.
Herald added a project: clang-tools-extra.
This shouldn't have any externally visible effect.
This matches the new name from 18b4a8bcf3553174f770f09528c9bd01c8cebfe7 <https://reviews.llvm.org/rG18b4a8bcf3553174f770f09528c9bd01c8cebfe7>.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D130701
Files:
clang-tools-extra/clang-tidy/misc/CMakeLists.txt
Index: clang-tools-extra/clang-tidy/misc/CMakeLists.txt
===================================================================
--- clang-tools-extra/clang-tidy/misc/CMakeLists.txt
+++ clang-tools-extra/clang-tidy/misc/CMakeLists.txt
@@ -7,14 +7,14 @@
STRING "Host clang-tidy-confusable-chars-gen executable. Saves building if cross-compiling.")
if(NOT CLANG_TIDY_CONFUSABLE_CHARS_GEN STREQUAL "clang-tidy-confusable-chars-gen")
- set(make_confusable_table ${CLANG_TIDY_CONFUSABLE_CHARS_GEN})
- set(make_confusable_table_target ${CLANG_TIDY_CONFUSABLE_CHARS_GEN})
+ set(clang_tidy_confusable_chars_gen ${CLANG_TIDY_CONFUSABLE_CHARS_GEN})
+ set(clang_tidy_confusable_chars_gen_target ${CLANG_TIDY_CONFUSABLE_CHARS_GEN})
elseif(LLVM_USE_HOST_TOOLS)
- build_native_tool(clang-tidy-confusable-chars-gen make_confusable_table)
- set(make_confusable_table_target "${make_confusable_table}")
+ build_native_tool(clang-tidy-confusable-chars-gen clang_tidy_confusable_chars_gen)
+ set(clang_tidy_confusable_chars_gen_target "${clang_tidy_confusable_chars_gen}")
else()
- set(make_confusable_table $<TARGET_FILE:clang-tidy-confusable-chars-gen>)
- set(make_confusable_table_target clang-tidy-confusable-chars-gen)
+ set(clang_tidy_confusable_chars_gen $<TARGET_FILE:clang-tidy-confusable-chars-gen>)
+ set(clang_tidy_confusable_chars_gen_target clang-tidy-confusable-chars-gen)
endif()
add_subdirectory(ConfusableTable)
@@ -22,8 +22,8 @@
add_custom_command(
OUTPUT Confusables.inc
- COMMAND ${make_confusable_table} ${CMAKE_CURRENT_SOURCE_DIR}/ConfusableTable/confusables.txt ${CMAKE_CURRENT_BINARY_DIR}/Confusables.inc
- DEPENDS ${make_confusable_table_target} ConfusableTable/confusables.txt)
+ COMMAND ${clang_tidy_confusable_chars_gen} ${CMAKE_CURRENT_SOURCE_DIR}/ConfusableTable/confusables.txt ${CMAKE_CURRENT_BINARY_DIR}/Confusables.inc
+ DEPENDS ${clang_tidy_confusable_chars_gen_target} ConfusableTable/confusables.txt)
add_custom_target(genconfusable DEPENDS Confusables.inc)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D130701.448293.patch
Type: text/x-patch
Size: 2021 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220728/4724f569/attachment-0001.bin>
More information about the cfe-commits
mailing list