forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			483 B
		
	
	
	
		
			CMake
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			483 B
		
	
	
	
		
			CMake
		
	
	
	
| set(LLVM_LINK_COMPONENTS
 | |
|   Option
 | |
|   Support
 | |
|   )
 | |
| 
 | |
| add_subdirectory(Core)
 | |
| 
 | |
| add_clang_library(clangTooling
 | |
|   ArgumentsAdjusters.cpp
 | |
|   CommonOptionsParser.cpp
 | |
|   CompilationDatabase.cpp
 | |
|   FileMatchTrie.cpp
 | |
|   FixIt.cpp
 | |
|   JSONCompilationDatabase.cpp
 | |
|   Refactoring.cpp
 | |
|   RefactoringCallbacks.cpp
 | |
|   Tooling.cpp
 | |
| 
 | |
|   DEPENDS
 | |
|   ClangDriverOptions
 | |
| 
 | |
|   LINK_LIBS
 | |
|   clangAST
 | |
|   clangASTMatchers
 | |
|   clangBasic
 | |
|   clangDriver
 | |
|   clangFormat
 | |
|   clangFrontend
 | |
|   clangLex
 | |
|   clangRewrite
 | |
|   clangToolingCore
 | |
|   )
 |