Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 1 | set(LLVM_NO_RTTI 1) |
| 2 | |
| 3 | # TODO: Add -maltivec when ARCH is PowerPC. |
| 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 |
| 14 | PPCaching.cpp |
| 15 | PPDirectives.cpp |
| 16 | PPExpressions.cpp |
| 17 | PPLexerChange.cpp |
| 18 | PPMacroExpansion.cpp |
Ted Kremenek | b3b7364 | 2009-07-15 21:08:41 +0000 | [diff] [blame] | 19 | PTHLexer.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 20 | Pragma.cpp |
Douglas Gregor | 4ae8f29 | 2010-03-18 17:52:52 +0000 | [diff] [blame] | 21 | PreprocessingRecord.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 22 | Preprocessor.cpp |
Oscar Fuentes | 148f061 | 2008-11-19 18:46:39 +0000 | [diff] [blame] | 23 | PreprocessorLexer.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 24 | ScratchBuffer.cpp |
Mike Stump | 4783787 | 2009-02-13 15:42:50 +0000 | [diff] [blame] | 25 | TokenConcatenation.cpp |
Ted Kremenek | b3b7364 | 2009-07-15 21:08:41 +0000 | [diff] [blame] | 26 | TokenLexer.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 27 | ) |
Douglas Gregor | a393e9e | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 28 | |
Michael J. Spencer | 560a921 | 2010-09-13 23:54:41 +0000 | [diff] [blame] | 29 | add_dependencies(clangLex ClangDiagnosticLex) |