From ffd7a200fdfbd01ef296101647d2f2da91ddfd41 Mon Sep 17 00:00:00 2001 From: Nemanja Ivanovic Date: Wed, 14 Jun 2023 06:45:05 -0500 Subject: [PATCH] [clang-tidy] Fix build bot break after 474a2b9367ad The commmit added clang-tidy checks without adding the required library to the link step. Caused failures with shared library builds. --- clang-tools-extra/clang-tidy/cppcoreguidelines/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/clang-tools-extra/clang-tidy/cppcoreguidelines/CMakeLists.txt b/clang-tools-extra/clang-tidy/cppcoreguidelines/CMakeLists.txt index b63f28f..3b6fd64 100644 --- a/clang-tools-extra/clang-tidy/cppcoreguidelines/CMakeLists.txt +++ b/clang-tools-extra/clang-tidy/cppcoreguidelines/CMakeLists.txt @@ -39,6 +39,7 @@ add_clang_library(clangTidyCppCoreGuidelinesModule clangTidy clangTidyMiscModule clangTidyModernizeModule + clangTidyPerformanceModule clangTidyReadabilityModule clangTidyUtils -- 2.7.4