Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 1 | # TODO: Add -maltivec when ARCH is PowerPC. |
2 | |||||
Jeffrey Yasskin | 0a86d44 | 2011-02-11 23:46:38 +0000 | [diff] [blame] | 3 | set(LLVM_LINK_COMPONENTS support) |
4 | |||||
Michael J. Spencer | 560a921 | 2010-09-13 23:54:41 +0000 | [diff] [blame] | 5 | set(LLVM_USED_LIBS clangBasic) |
6 | |||||
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 7 | add_clang_library(clangLex |
8 | HeaderMap.cpp | ||||
9 | HeaderSearch.cpp | ||||
10 | Lexer.cpp | ||||
11 | LiteralSupport.cpp | ||||
12 | MacroArgs.cpp | ||||
13 | MacroInfo.cpp | ||||
Douglas Gregor | a30cfe5 | 2011-11-11 19:10:28 +0000 | [diff] [blame] | 14 | ModuleMap.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 15 | PPCaching.cpp |
Chandler Carruth | 3ff53b3 | 2011-12-20 08:42:15 +0000 | [diff] [blame] | 16 | PPCallbacks.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 17 | PPDirectives.cpp |
18 | PPExpressions.cpp | ||||
19 | PPLexerChange.cpp | ||||
20 | PPMacroExpansion.cpp | ||||
Ted Kremenek | b3b7364 | 2009-07-15 21:08:41 +0000 | [diff] [blame] | 21 | PTHLexer.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 22 | Pragma.cpp |
Douglas Gregor | 4ae8f29 | 2010-03-18 17:52:52 +0000 | [diff] [blame] | 23 | PreprocessingRecord.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 24 | Preprocessor.cpp |
Oscar Fuentes | 148f061 | 2008-11-19 18:46:39 +0000 | [diff] [blame] | 25 | PreprocessorLexer.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 26 | ScratchBuffer.cpp |
Mike Stump | 4783787 | 2009-02-13 15:42:50 +0000 | [diff] [blame] | 27 | TokenConcatenation.cpp |
Ted Kremenek | b3b7364 | 2009-07-15 21:08:41 +0000 | [diff] [blame] | 28 | TokenLexer.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 29 | ) |
Douglas Gregor | a393e9e | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 30 | |
Anders Carlsson | cae5095 | 2010-10-20 02:31:43 +0000 | [diff] [blame] | 31 | add_dependencies(clangLex ClangDiagnosticLex ClangAttrSpellings) |