If a add_clang_library call doesn't specify building as static or shared
library they are implicitly added to the list static libraries that is
linked in to clang-cpp shared library here.
315ba77406/clang/cmake/modules/AddClang.cmake (L107)
Because the clang-tools-extra libraries targets were declared after
clang-cpp they by luck never got linked to clang-cpp.
This change is required for clang symbol visibility macros on windows to
work correctly for clang tools since we need to distinguish if a target
being built will be importing or exporting clang symbols from the
clang-cpp DLL.
62 lines
1.4 KiB
CMake
62 lines
1.4 KiB
CMake
set(LLVM_LINK_COMPONENTS
|
|
FrontendOpenMP
|
|
Support
|
|
)
|
|
|
|
add_clang_library(clangTidyCppCoreGuidelinesModule STATIC
|
|
AvoidCapturingLambdaCoroutinesCheck.cpp
|
|
AvoidConstOrRefDataMembersCheck.cpp
|
|
AvoidDoWhileCheck.cpp
|
|
AvoidGotoCheck.cpp
|
|
AvoidNonConstGlobalVariablesCheck.cpp
|
|
AvoidReferenceCoroutineParametersCheck.cpp
|
|
CppCoreGuidelinesTidyModule.cpp
|
|
InitVariablesCheck.cpp
|
|
InterfacesGlobalInitCheck.cpp
|
|
MacroUsageCheck.cpp
|
|
MisleadingCaptureDefaultByValueCheck.cpp
|
|
MissingStdForwardCheck.cpp
|
|
NarrowingConversionsCheck.cpp
|
|
NoMallocCheck.cpp
|
|
NoSuspendWithLockCheck.cpp
|
|
OwningMemoryCheck.cpp
|
|
PreferMemberInitializerCheck.cpp
|
|
ProBoundsArrayToPointerDecayCheck.cpp
|
|
ProBoundsConstantArrayIndexCheck.cpp
|
|
ProBoundsPointerArithmeticCheck.cpp
|
|
ProTypeConstCastCheck.cpp
|
|
ProTypeCstyleCastCheck.cpp
|
|
ProTypeMemberInitCheck.cpp
|
|
ProTypeReinterpretCastCheck.cpp
|
|
ProTypeStaticCastDowncastCheck.cpp
|
|
ProTypeUnionAccessCheck.cpp
|
|
ProTypeVarargCheck.cpp
|
|
RvalueReferenceParamNotMovedCheck.cpp
|
|
SlicingCheck.cpp
|
|
SpecialMemberFunctionsCheck.cpp
|
|
VirtualClassDestructorCheck.cpp
|
|
|
|
LINK_LIBS
|
|
clangTidy
|
|
clangTidyMiscModule
|
|
clangTidyModernizeModule
|
|
clangTidyPerformanceModule
|
|
clangTidyReadabilityModule
|
|
clangTidyUtils
|
|
|
|
DEPENDS
|
|
omp_gen
|
|
ClangDriverOptions
|
|
)
|
|
|
|
clang_target_link_libraries(clangTidyCppCoreGuidelinesModule
|
|
PRIVATE
|
|
clangAnalysis
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
clangLex
|
|
clangSerialization
|
|
clangTooling
|
|
)
|