mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 02:26:07 +00:00

This is needed because Windows doesn't have anything equivalent to the POSIX fnmatch() function.
32 lines
692 B
CMake
32 lines
692 B
CMake
set(LLVM_LINK_COMPONENTS support)
|
|
|
|
add_clang_library(clangFormat
|
|
AffectedRangeManager.cpp
|
|
BreakableToken.cpp
|
|
ContinuationIndenter.cpp
|
|
DefinitionBlockSeparator.cpp
|
|
Format.cpp
|
|
FormatToken.cpp
|
|
FormatTokenLexer.cpp
|
|
IntegerLiteralSeparatorFixer.cpp
|
|
MacroCallReconstructor.cpp
|
|
MacroExpander.cpp
|
|
MatchFilePath.cpp
|
|
NamespaceEndCommentsFixer.cpp
|
|
ObjCPropertyAttributeOrderFixer.cpp
|
|
QualifierAlignmentFixer.cpp
|
|
SortJavaScriptImports.cpp
|
|
TokenAnalyzer.cpp
|
|
TokenAnnotator.cpp
|
|
UnwrappedLineFormatter.cpp
|
|
UnwrappedLineParser.cpp
|
|
UsingDeclarationsSorter.cpp
|
|
WhitespaceManager.cpp
|
|
|
|
LINK_LIBS
|
|
clangBasic
|
|
clangLex
|
|
clangToolingCore
|
|
clangToolingInclusions
|
|
)
|