Gabor Greif | 3279575 | 2009-03-13 11:37:39 +0000 | [diff] [blame] | 1 | set(LLVM_NO_RTTI 1) |
2 | |||||
Michael J. Spencer | 560a921 | 2010-09-13 23:54:41 +0000 | [diff] [blame] | 3 | set(LLVM_USED_LIBS clangBasic clangAST clangParse) |
4 | |||||
Gabor Greif | 3279575 | 2009-03-13 11:37:39 +0000 | [diff] [blame] | 5 | add_clang_library(clangDriver |
6 | Action.cpp | ||||
7 | Arg.cpp | ||||
8 | ArgList.cpp | ||||
Daniel Dunbar | 8adfcff | 2009-11-19 07:19:04 +0000 | [diff] [blame] | 9 | CC1Options.cpp |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 10 | CC1AsOptions.cpp |
Gabor Greif | 3279575 | 2009-03-13 11:37:39 +0000 | [diff] [blame] | 11 | Compilation.cpp |
12 | Driver.cpp | ||||
Daniel Dunbar | 27e738d | 2009-11-19 00:15:11 +0000 | [diff] [blame] | 13 | DriverOptions.cpp |
Gabor Greif | 3279575 | 2009-03-13 11:37:39 +0000 | [diff] [blame] | 14 | HostInfo.cpp |
Mike Stump | a43a21e | 2009-03-24 17:52:34 +0000 | [diff] [blame] | 15 | Job.cpp |
Gabor Greif | 3279575 | 2009-03-13 11:37:39 +0000 | [diff] [blame] | 16 | Option.cpp |
Kovarththanan Rajaratnam | 909e6aa | 2010-03-22 18:16:06 +0000 | [diff] [blame] | 17 | OptTable.cpp |
Gabor Greif | 3279575 | 2009-03-13 11:37:39 +0000 | [diff] [blame] | 18 | Phases.cpp |
Mike Stump | a43a21e | 2009-03-24 17:52:34 +0000 | [diff] [blame] | 19 | Tool.cpp |
20 | ToolChain.cpp | ||||
21 | ToolChains.cpp | ||||
22 | Tools.cpp | ||||
Gabor Greif | 3279575 | 2009-03-13 11:37:39 +0000 | [diff] [blame] | 23 | Types.cpp |
24 | ) | ||||
Douglas Gregor | 0adea82 | 2009-06-18 15:05:47 +0000 | [diff] [blame] | 25 | |
Michael J. Spencer | 560a921 | 2010-09-13 23:54:41 +0000 | [diff] [blame] | 26 | add_dependencies(clangDriver ClangAttrList ClangDiagnosticDriver |
27 | ClangDriverOptions ClangCC1Options ClangCC1AsOptions) |