blob: 7c5fca54d1e1f61dd2379e712dc5517e36426f45 [file] [log] [blame]
Alp Toker0621cb22014-07-16 16:48:33 +00001add_subdirectory(Rewrite)
2
NAKAMURA Takumi65d42bc2013-12-09 19:04:43 +00003set(LLVM_LINK_COMPONENTS
Justin Bognerf8847232014-10-14 06:30:31 +00004 BitReader
NAKAMURA Takumi65d42bc2013-12-09 19:04:43 +00005 Option
6 Support
7 )
8
Mike Stump90a37072009-03-24 17:52:34 +00009add_clang_library(clangFrontend
Eli Friedman351fa4b2009-05-18 23:06:15 +000010 ASTConsumers.cpp
Douglas Gregor62d311f2010-02-09 19:21:46 +000011 ASTMerge.cpp
Argyrios Kyrtzidis9cab2962009-06-23 22:01:29 +000012 ASTUnit.cpp
Eli Friedmane15ecf02009-05-19 04:21:30 +000013 CacheTokens.cpp
Chandler Carruth1c032e02011-12-20 08:42:15 +000014 ChainedDiagnosticConsumer.cpp
Chandler Carruthf887db02011-12-09 01:55:54 +000015 ChainedIncludesSource.cpp
Alexey Samsonove1061022014-11-11 00:22:12 +000016 CodeGenOptions.cpp
Daniel Dunbar636404a2009-11-13 03:51:44 +000017 CompilerInstance.cpp
Daniel Dunbar629f6bb2009-11-17 06:02:29 +000018 CompilerInvocation.cpp
Argyrios Kyrtzidis0e93ac62011-04-04 23:17:56 +000019 CreateInvocationFromCommandLine.cpp
Eli Friedmane15ecf02009-05-19 04:21:30 +000020 DependencyFile.cpp
Douglas Gregor83d46be2012-02-02 00:54:52 +000021 DependencyGraph.cpp
Ted Kremenekc4bbd852011-12-17 05:26:04 +000022 DiagnosticRenderer.cpp
Daniel Dunbara0ff58d2009-11-14 10:42:35 +000023 FrontendAction.cpp
Daniel Dunbar02bd2d72009-11-14 10:42:46 +000024 FrontendActions.cpp
Daniel Dunbar27b19dc2009-11-13 02:06:12 +000025 FrontendOptions.cpp
Daniel Dunbar27734fd2011-02-02 15:41:17 +000026 HeaderIncludeGen.cpp
Oscar Fuentes07d9f9a2008-10-26 00:56:18 +000027 InitHeaderSearch.cpp
Chris Lattner2f5693f2009-04-21 05:40:52 +000028 InitPreprocessor.cpp
Daniel Dunbare0d81f22009-11-26 02:14:31 +000029 LangStandards.cpp
Douglas Gregore9fc3772012-01-26 07:55:45 +000030 LayoutOverrideSource.cpp
Daniel Dunbar2083c322011-04-07 18:31:10 +000031 LogDiagnosticPrinter.cpp
Justin Bogner86d12592014-06-19 19:36:03 +000032 ModuleDependencyCollector.cpp
Ted Kremenek7e1ec9c2011-01-25 22:10:37 +000033 MultiplexConsumer.cpp
Eli Friedmane15ecf02009-05-19 04:21:30 +000034 PrintPreprocessedOutput.cpp
Ted Kremenek4610ea22011-10-29 00:12:39 +000035 SerializedDiagnosticPrinter.cpp
Justin Bognerf8847232014-10-14 06:30:31 +000036 SerializedDiagnosticReader.cpp
Chandler Carrutha3028852011-10-15 23:43:53 +000037 TextDiagnostic.cpp
Eli Friedmane15ecf02009-05-19 04:21:30 +000038 TextDiagnosticBuffer.cpp
39 TextDiagnosticPrinter.cpp
David Blaikie69609dc2011-09-26 00:38:03 +000040 VerifyDiagnosticConsumer.cpp
NAKAMURA Takumie842e4b2014-02-23 13:44:09 +000041
42 DEPENDS
43 ClangDriverOptions
Douglas Gregore1d15c82009-06-18 15:05:47 +000044
NAKAMURA Takumi96986862014-02-26 06:41:29 +000045 LINK_LIBS
Chandler Carruth28969b42012-06-21 01:30:21 +000046 clangAST
47 clangBasic
48 clangDriver
49 clangEdit
50 clangLex
51 clangParse
52 clangSema
53 clangSerialization
54 )