aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-07-15 21:08:41 +0000
committerTed Kremenek <kremenek@apple.com>2009-07-15 21:08:41 +0000
commitb3b73642bfb4417d6312725ad6cc8d73ae143aca (patch)
tree73d8de7ccd354283f780b14e8af3073e1384eb85
parentf7d47c04d0a54c6a0359befff87ffb269db7afc6 (diff)
Lexically order files in CMakeLists.txt files.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75832 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/AST/CMakeLists.txt6
-rw-r--r--lib/Analysis/CMakeLists.txt2
-rw-r--r--lib/CodeGen/CMakeLists.txt6
-rw-r--r--lib/Frontend/CMakeLists.txt2
-rw-r--r--lib/Lex/CMakeLists.txt4
-rw-r--r--lib/Rewrite/CMakeLists.txt2
-rw-r--r--lib/Sema/CMakeLists.txt4
7 files changed, 13 insertions, 13 deletions
diff --git a/lib/AST/CMakeLists.txt b/lib/AST/CMakeLists.txt
index ac4cbb2d29..dcc2ffc203 100644
--- a/lib/AST/CMakeLists.txt
+++ b/lib/AST/CMakeLists.txt
@@ -5,17 +5,17 @@ add_clang_library(clangAST
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
diff --git a/lib/Analysis/CMakeLists.txt b/lib/Analysis/CMakeLists.txt
index 7d6a619736..8f5c648be4 100644
--- a/lib/Analysis/CMakeLists.txt
+++ b/lib/Analysis/CMakeLists.txt
@@ -24,10 +24,10 @@ add_clang_library(clangAnalysis
PathDiagnostic.cpp
RangeConstraintManager.cpp
RegionStore.cpp
+ SVals.cpp
SimpleConstraintManager.cpp
SimpleSValuator.cpp
Store.cpp
- SVals.cpp
SymbolManager.cpp
UninitializedValues.cpp
ValueManager.cpp
diff --git a/lib/CodeGen/CMakeLists.txt b/lib/CodeGen/CMakeLists.txt
index c206a3bdd2..26fd6448c6 100644
--- a/lib/CodeGen/CMakeLists.txt
+++ b/lib/CodeGen/CMakeLists.txt
@@ -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
diff --git a/lib/Frontend/CMakeLists.txt b/lib/Frontend/CMakeLists.txt
index 5e94e65617..9574ebafd3 100644
--- a/lib/Frontend/CMakeLists.txt
+++ b/lib/Frontend/CMakeLists.txt
@@ -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
diff --git a/lib/Lex/CMakeLists.txt b/lib/Lex/CMakeLists.txt
index a7237a7b76..81a1e01f96 100644
--- a/lib/Lex/CMakeLists.txt
+++ b/lib/Lex/CMakeLists.txt
@@ -14,13 +14,13 @@ add_clang_library(clangLex
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)
diff --git a/lib/Rewrite/CMakeLists.txt b/lib/Rewrite/CMakeLists.txt
index 52670b82a2..ce9e1ed424 100644
--- a/lib/Rewrite/CMakeLists.txt
+++ b/lib/Rewrite/CMakeLists.txt
@@ -3,7 +3,7 @@ set(LLVM_NO_RTTI 1)
add_clang_library(clangRewrite
DeltaTree.cpp
HTMLRewrite.cpp
- Rewriter.cpp
RewriteRope.cpp
+ Rewriter.cpp
TokenRewriter.cpp
)
diff --git a/lib/Sema/CMakeLists.txt b/lib/Sema/CMakeLists.txt
index 85c67df8f1..119bf58499 100644
--- a/lib/Sema/CMakeLists.txt
+++ b/lib/Sema/CMakeLists.txt
@@ -7,10 +7,10 @@ add_clang_library(clangSema
Sema.cpp
SemaAccess.cpp
SemaAttr.cpp
- SemaChecking.cpp
SemaCXXScopeSpec.cpp
- SemaDeclAttr.cpp
+ SemaChecking.cpp
SemaDecl.cpp
+ SemaDeclAttr.cpp
SemaDeclCXX.cpp
SemaDeclObjC.cpp
SemaExpr.cpp