forked from qt-creator/qt-creator
qbs build: Remove unneeded Project items
Also update type descriptions. Change-Id: I2b7d8814913cfb72cb8280601338ab763d8fabe6 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -1,135 +1,131 @@
|
||||
import qbs 1.0
|
||||
|
||||
Project {
|
||||
QtcLibrary {
|
||||
name: "CPlusPlus"
|
||||
|
||||
QtcLibrary {
|
||||
cpp.includePaths: base.concat("../3rdparty")
|
||||
cpp.defines: base.concat([
|
||||
"NDEBUG",
|
||||
"CPLUSPLUS_BUILD_LIB"
|
||||
])
|
||||
cpp.optimization: "fast"
|
||||
cpp.includePaths: base.concat("../3rdparty")
|
||||
cpp.defines: base.concat([
|
||||
"NDEBUG",
|
||||
"CPLUSPLUS_BUILD_LIB"
|
||||
])
|
||||
cpp.optimization: "fast"
|
||||
|
||||
Depends { name: "Qt.widgets" }
|
||||
Depends { name: "Utils" }
|
||||
Depends { name: "Qt.widgets" }
|
||||
Depends { name: "Utils" }
|
||||
|
||||
Group {
|
||||
name: "ThirdPartyCPlusPlus"
|
||||
prefix: "../3rdparty/cplusplus/"
|
||||
files: [
|
||||
"AST.cpp",
|
||||
"AST.h",
|
||||
"ASTClone.cpp",
|
||||
"ASTMatch0.cpp",
|
||||
"ASTMatcher.cpp",
|
||||
"ASTMatcher.h",
|
||||
"ASTPatternBuilder.h",
|
||||
"ASTVisit.cpp",
|
||||
"ASTVisitor.cpp",
|
||||
"ASTVisitor.h",
|
||||
"ASTfwd.h",
|
||||
"Bind.cpp",
|
||||
"Bind.h",
|
||||
"CPlusPlus.h",
|
||||
"Control.cpp",
|
||||
"Control.h",
|
||||
"CoreTypes.cpp",
|
||||
"CoreTypes.h",
|
||||
"DiagnosticClient.cpp",
|
||||
"DiagnosticClient.h",
|
||||
"FullySpecifiedType.cpp",
|
||||
"FullySpecifiedType.h",
|
||||
"Keywords.cpp",
|
||||
"Keywords.kwgen",
|
||||
"Lexer.cpp",
|
||||
"Lexer.h",
|
||||
"LiteralTable.h",
|
||||
"Literals.cpp",
|
||||
"Literals.h",
|
||||
"Matcher.cpp",
|
||||
"Matcher.h",
|
||||
"MemoryPool.cpp",
|
||||
"MemoryPool.h",
|
||||
"Name.cpp",
|
||||
"Name.h",
|
||||
"NameVisitor.cpp",
|
||||
"NameVisitor.h",
|
||||
"Names.cpp",
|
||||
"Names.h",
|
||||
"ObjectiveCAtKeywords.cpp",
|
||||
"ObjectiveCTypeQualifiers.cpp",
|
||||
"ObjectiveCTypeQualifiers.h",
|
||||
"Parser.cpp",
|
||||
"Parser.h",
|
||||
"QtContextKeywords.cpp",
|
||||
"QtContextKeywords.h",
|
||||
"SafeMatcher.cpp",
|
||||
"SafeMatcher.h",
|
||||
"Scope.cpp",
|
||||
"Scope.h",
|
||||
"Symbol.cpp",
|
||||
"Symbol.h",
|
||||
"SymbolVisitor.h",
|
||||
"Symbols.cpp",
|
||||
"Symbols.h",
|
||||
"Templates.cpp",
|
||||
"Templates.h",
|
||||
"Token.cpp",
|
||||
"Token.h",
|
||||
"TranslationUnit.cpp",
|
||||
"TranslationUnit.h",
|
||||
"Type.cpp",
|
||||
"Type.h",
|
||||
"TypeVisitor.cpp",
|
||||
"TypeVisitor.h",
|
||||
]
|
||||
}
|
||||
Group {
|
||||
name: "ThirdPartyCPlusPlus"
|
||||
prefix: "../3rdparty/cplusplus/"
|
||||
files: [
|
||||
"AST.cpp",
|
||||
"AST.h",
|
||||
"ASTClone.cpp",
|
||||
"ASTMatch0.cpp",
|
||||
"ASTMatcher.cpp",
|
||||
"ASTMatcher.h",
|
||||
"ASTPatternBuilder.h",
|
||||
"ASTVisit.cpp",
|
||||
"ASTVisitor.cpp",
|
||||
"ASTVisitor.h",
|
||||
"ASTfwd.h",
|
||||
"Bind.cpp",
|
||||
"Bind.h",
|
||||
"CPlusPlus.h",
|
||||
"Control.cpp",
|
||||
"Control.h",
|
||||
"CoreTypes.cpp",
|
||||
"CoreTypes.h",
|
||||
"DiagnosticClient.cpp",
|
||||
"DiagnosticClient.h",
|
||||
"FullySpecifiedType.cpp",
|
||||
"FullySpecifiedType.h",
|
||||
"Keywords.cpp",
|
||||
"Keywords.kwgen",
|
||||
"Lexer.cpp",
|
||||
"Lexer.h",
|
||||
"LiteralTable.h",
|
||||
"Literals.cpp",
|
||||
"Literals.h",
|
||||
"Matcher.cpp",
|
||||
"Matcher.h",
|
||||
"MemoryPool.cpp",
|
||||
"MemoryPool.h",
|
||||
"Name.cpp",
|
||||
"Name.h",
|
||||
"NameVisitor.cpp",
|
||||
"NameVisitor.h",
|
||||
"Names.cpp",
|
||||
"Names.h",
|
||||
"ObjectiveCAtKeywords.cpp",
|
||||
"ObjectiveCTypeQualifiers.cpp",
|
||||
"ObjectiveCTypeQualifiers.h",
|
||||
"Parser.cpp",
|
||||
"Parser.h",
|
||||
"QtContextKeywords.cpp",
|
||||
"QtContextKeywords.h",
|
||||
"SafeMatcher.cpp",
|
||||
"SafeMatcher.h",
|
||||
"Scope.cpp",
|
||||
"Scope.h",
|
||||
"Symbol.cpp",
|
||||
"Symbol.h",
|
||||
"SymbolVisitor.h",
|
||||
"Symbols.cpp",
|
||||
"Symbols.h",
|
||||
"Templates.cpp",
|
||||
"Templates.h",
|
||||
"Token.cpp",
|
||||
"Token.h",
|
||||
"TranslationUnit.cpp",
|
||||
"TranslationUnit.h",
|
||||
"Type.cpp",
|
||||
"Type.h",
|
||||
"TypeVisitor.cpp",
|
||||
"TypeVisitor.h",
|
||||
]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "General"
|
||||
files: [
|
||||
"AlreadyConsideredClassContainer.h",
|
||||
"ASTParent.cpp", "ASTParent.h",
|
||||
"ASTPath.cpp", "ASTPath.h",
|
||||
"BackwardsScanner.cpp", "BackwardsScanner.h",
|
||||
"CppDocument.cpp", "CppDocument.h",
|
||||
"CppRewriter.cpp", "CppRewriter.h",
|
||||
"cppmodelmanagerbase.cpp", "cppmodelmanagerbase.h",
|
||||
"declarationcomments.cpp", "declarationcomments.h",
|
||||
"DependencyTable.cpp", "DependencyTable.h",
|
||||
"DeprecatedGenTemplateInstance.cpp", "DeprecatedGenTemplateInstance.h",
|
||||
"ExpressionUnderCursor.cpp", "ExpressionUnderCursor.h",
|
||||
"FastPreprocessor.cpp", "FastPreprocessor.h",
|
||||
"FindUsages.cpp", "FindUsages.h",
|
||||
"Icons.cpp", "Icons.h",
|
||||
"LookupContext.cpp", "LookupContext.h",
|
||||
"LookupItem.cpp", "LookupItem.h",
|
||||
"Macro.cpp", "Macro.h",
|
||||
"MatchingText.cpp", "MatchingText.h",
|
||||
"NamePrettyPrinter.cpp", "NamePrettyPrinter.h",
|
||||
"Overview.cpp", "Overview.h",
|
||||
"PPToken.cpp", "PPToken.h",
|
||||
"PreprocessorClient.cpp", "PreprocessorClient.h",
|
||||
"PreprocessorEnvironment.cpp", "PreprocessorEnvironment.h",
|
||||
"ResolveExpression.cpp", "ResolveExpression.h",
|
||||
"SimpleLexer.cpp", "SimpleLexer.h",
|
||||
"SnapshotSymbolVisitor.cpp", "SnapshotSymbolVisitor.h",
|
||||
"SymbolNameVisitor.cpp", "SymbolNameVisitor.h",
|
||||
"TypeOfExpression.cpp", "TypeOfExpression.h",
|
||||
"TypePrettyPrinter.cpp", "TypePrettyPrinter.h",
|
||||
"findcdbbreakpoint.cpp", "findcdbbreakpoint.h",
|
||||
"pp-cctype.h",
|
||||
"pp-engine.cpp", "pp-engine.h",
|
||||
"pp-scanner.cpp", "pp-scanner.h",
|
||||
"pp.h",
|
||||
]
|
||||
}
|
||||
Group {
|
||||
name: "General"
|
||||
files: [
|
||||
"AlreadyConsideredClassContainer.h",
|
||||
"ASTParent.cpp", "ASTParent.h",
|
||||
"ASTPath.cpp", "ASTPath.h",
|
||||
"BackwardsScanner.cpp", "BackwardsScanner.h",
|
||||
"CppDocument.cpp", "CppDocument.h",
|
||||
"CppRewriter.cpp", "CppRewriter.h",
|
||||
"cppmodelmanagerbase.cpp", "cppmodelmanagerbase.h",
|
||||
"declarationcomments.cpp", "declarationcomments.h",
|
||||
"DependencyTable.cpp", "DependencyTable.h",
|
||||
"DeprecatedGenTemplateInstance.cpp", "DeprecatedGenTemplateInstance.h",
|
||||
"ExpressionUnderCursor.cpp", "ExpressionUnderCursor.h",
|
||||
"FastPreprocessor.cpp", "FastPreprocessor.h",
|
||||
"FindUsages.cpp", "FindUsages.h",
|
||||
"Icons.cpp", "Icons.h",
|
||||
"LookupContext.cpp", "LookupContext.h",
|
||||
"LookupItem.cpp", "LookupItem.h",
|
||||
"Macro.cpp", "Macro.h",
|
||||
"MatchingText.cpp", "MatchingText.h",
|
||||
"NamePrettyPrinter.cpp", "NamePrettyPrinter.h",
|
||||
"Overview.cpp", "Overview.h",
|
||||
"PPToken.cpp", "PPToken.h",
|
||||
"PreprocessorClient.cpp", "PreprocessorClient.h",
|
||||
"PreprocessorEnvironment.cpp", "PreprocessorEnvironment.h",
|
||||
"ResolveExpression.cpp", "ResolveExpression.h",
|
||||
"SimpleLexer.cpp", "SimpleLexer.h",
|
||||
"SnapshotSymbolVisitor.cpp", "SnapshotSymbolVisitor.h",
|
||||
"SymbolNameVisitor.cpp", "SymbolNameVisitor.h",
|
||||
"TypeOfExpression.cpp", "TypeOfExpression.h",
|
||||
"TypePrettyPrinter.cpp", "TypePrettyPrinter.h",
|
||||
"findcdbbreakpoint.cpp", "findcdbbreakpoint.h",
|
||||
"pp-cctype.h",
|
||||
"pp-engine.cpp", "pp-engine.h",
|
||||
"pp-scanner.cpp", "pp-scanner.h",
|
||||
"pp.h",
|
||||
]
|
||||
}
|
||||
|
||||
Export {
|
||||
cpp.includePaths: [
|
||||
exportingProduct.sourceDirectory + "/../3rdparty"
|
||||
]
|
||||
}
|
||||
Export {
|
||||
cpp.includePaths: [
|
||||
exportingProduct.sourceDirectory + "/../3rdparty"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user