Skip TestThreadLocal.py on darwin temporarily for linker issue
[llvm-project.git] / clang-tools-extra / modularize / CMakeLists.txt
blobeb5383c3ad44e013100a8ccb392354caca9a7211
1 set(LLVM_LINK_COMPONENTS
2   Option
3   Support
4   TargetParser
5   )
7 add_clang_tool(modularize
8   Modularize.cpp
9   ModuleAssistant.cpp
10   ModularizeUtilities.cpp
11   CoverageChecker.cpp
12   PreprocessorTracker.cpp
14   DEPENDS
15   ClangDriverOptions
16   )
18 clang_target_link_libraries(modularize
19   PRIVATE
20   clangAST
21   clangBasic
22   clangDriver
23   clangFrontend
24   clangLex
25   clangSerialization
26   clangTooling
27   )
29 install(TARGETS modularize
30         RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
31         COMPONENT clang-extras)