[cfe-commits] r75832 - in /cfe/trunk/lib: AST/CMakeLists.txt Analysis/CMakeLists.txt CodeGen/CMakeLists.txt Frontend/CMakeLists.txt Lex/CMakeLists.txt Rewrite/CMakeLists.txt Sema/CMakeLists.txt
Ted Kremenek
kremenek at apple.com
Wed Jul 15 14:08:42 PDT 2009
Author: kremenek
Date: Wed Jul 15 16:08:41 2009
New Revision: 75832
URL: http://llvm.org/viewvc/llvm-project?rev=75832&view=rev
Log:
Lexically order files in CMakeLists.txt files.
Modified:
cfe/trunk/lib/AST/CMakeLists.txt
cfe/trunk/lib/Analysis/CMakeLists.txt
cfe/trunk/lib/CodeGen/CMakeLists.txt
cfe/trunk/lib/Frontend/CMakeLists.txt
cfe/trunk/lib/Lex/CMakeLists.txt
cfe/trunk/lib/Rewrite/CMakeLists.txt
cfe/trunk/lib/Sema/CMakeLists.txt
Modified: cfe/trunk/lib/AST/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/CMakeLists.txt?rev=75832&r1=75831&r2=75832&view=diff
==============================================================================
--- cfe/trunk/lib/AST/CMakeLists.txt (original)
+++ cfe/trunk/lib/AST/CMakeLists.txt Wed Jul 15 16:08:41 2009
@@ -5,17 +5,17 @@
ASTConsumer.cpp
ASTContext.cpp
CFG.cpp
- DeclarationName.cpp
- DeclBase.cpp
Decl.cpp
+ DeclBase.cpp
DeclCXX.cpp
DeclGroup.cpp
DeclObjC.cpp
DeclPrinter.cpp
DeclTemplate.cpp
- ExprConstant.cpp
+ DeclarationName.cpp
Expr.cpp
ExprCXX.cpp
+ ExprConstant.cpp
InheritViz.cpp
NestedNameSpecifier.cpp
ParentMap.cpp
Modified: cfe/trunk/lib/Analysis/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CMakeLists.txt?rev=75832&r1=75831&r2=75832&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/CMakeLists.txt (original)
+++ cfe/trunk/lib/Analysis/CMakeLists.txt Wed Jul 15 16:08:41 2009
@@ -24,10 +24,10 @@
PathDiagnostic.cpp
RangeConstraintManager.cpp
RegionStore.cpp
+ SVals.cpp
SimpleConstraintManager.cpp
SimpleSValuator.cpp
Store.cpp
- SVals.cpp
SymbolManager.cpp
UninitializedValues.cpp
ValueManager.cpp
Modified: cfe/trunk/lib/CodeGen/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CMakeLists.txt?rev=75832&r1=75831&r2=75832&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CMakeLists.txt (original)
+++ cfe/trunk/lib/CodeGen/CMakeLists.txt Wed Jul 15 16:08:41 2009
@@ -1,17 +1,17 @@
set(LLVM_NO_RTTI 1)
add_clang_library(clangCodeGen
- CGBuiltin.cpp
CGBlocks.cpp
- CGCall.cpp
+ CGBuiltin.cpp
CGCXX.cpp
CGCXXTemp.cpp
+ CGCall.cpp
CGDebugInfo.cpp
CGDecl.cpp
+ CGExpr.cpp
CGExprAgg.cpp
CGExprComplex.cpp
CGExprConstant.cpp
- CGExpr.cpp
CGExprScalar.cpp
CGObjC.cpp
CGObjCGNU.cpp
Modified: cfe/trunk/lib/Frontend/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Frontend/CMakeLists.txt?rev=75832&r1=75831&r2=75832&view=diff
==============================================================================
--- cfe/trunk/lib/Frontend/CMakeLists.txt (original)
+++ cfe/trunk/lib/Frontend/CMakeLists.txt Wed Jul 15 16:08:41 2009
@@ -1,9 +1,9 @@
set(LLVM_NO_RTTI 1)
add_clang_library(clangFrontend
- AnalysisConsumer.cpp
ASTConsumers.cpp
ASTUnit.cpp
+ AnalysisConsumer.cpp
Backend.cpp
CacheTokens.cpp
DeclXML.cpp
Modified: cfe/trunk/lib/Lex/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/CMakeLists.txt?rev=75832&r1=75831&r2=75832&view=diff
==============================================================================
--- cfe/trunk/lib/Lex/CMakeLists.txt (original)
+++ cfe/trunk/lib/Lex/CMakeLists.txt Wed Jul 15 16:08:41 2009
@@ -14,13 +14,13 @@
PPExpressions.cpp
PPLexerChange.cpp
PPMacroExpansion.cpp
+ PTHLexer.cpp
Pragma.cpp
Preprocessor.cpp
PreprocessorLexer.cpp
- PTHLexer.cpp
ScratchBuffer.cpp
- TokenLexer.cpp
TokenConcatenation.cpp
+ TokenLexer.cpp
)
add_dependencies(clangLex ClangDiagnosticLex)
Modified: cfe/trunk/lib/Rewrite/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Rewrite/CMakeLists.txt?rev=75832&r1=75831&r2=75832&view=diff
==============================================================================
--- cfe/trunk/lib/Rewrite/CMakeLists.txt (original)
+++ cfe/trunk/lib/Rewrite/CMakeLists.txt Wed Jul 15 16:08:41 2009
@@ -3,7 +3,7 @@
add_clang_library(clangRewrite
DeltaTree.cpp
HTMLRewrite.cpp
- Rewriter.cpp
RewriteRope.cpp
+ Rewriter.cpp
TokenRewriter.cpp
)
Modified: cfe/trunk/lib/Sema/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/CMakeLists.txt?rev=75832&r1=75831&r2=75832&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/CMakeLists.txt (original)
+++ cfe/trunk/lib/Sema/CMakeLists.txt Wed Jul 15 16:08:41 2009
@@ -7,10 +7,10 @@
Sema.cpp
SemaAccess.cpp
SemaAttr.cpp
- SemaChecking.cpp
SemaCXXScopeSpec.cpp
- SemaDeclAttr.cpp
+ SemaChecking.cpp
SemaDecl.cpp
+ SemaDeclAttr.cpp
SemaDeclCXX.cpp
SemaDeclObjC.cpp
SemaExpr.cpp
More information about the cfe-commits
mailing list