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:
@@ -17,6 +17,7 @@
|
|||||||
"qbs.Environment",
|
"qbs.Environment",
|
||||||
"qbs.File",
|
"qbs.File",
|
||||||
"qbs.FileInfo",
|
"qbs.FileInfo",
|
||||||
|
"qbs.Host",
|
||||||
"qbs.ModUtils",
|
"qbs.ModUtils",
|
||||||
"qbs.PathTools",
|
"qbs.PathTools",
|
||||||
"qbs.PkgConfig",
|
"qbs.PkgConfig",
|
||||||
|
66
src/libs/3rdparty/libptyqt/ptyqt.qbs
vendored
66
src/libs/3rdparty/libptyqt/ptyqt.qbs
vendored
@@ -1,45 +1,41 @@
|
|||||||
import qbs
|
QtcLibrary {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "ptyqt"
|
name: "ptyqt"
|
||||||
|
|
||||||
QtcLibrary {
|
Depends { name: "Qt.core" }
|
||||||
Depends { name: "Qt.core" }
|
Depends { name: "Qt.network"; condition: qbs.targetOS.contains("windows") }
|
||||||
Depends { name: "Qt.network"; condition: qbs.targetOS.contains("windows") }
|
Depends { name: "winpty"; condition: qbs.targetOS.contains("windows") }
|
||||||
Depends { name: "winpty"; condition: qbs.targetOS.contains("windows") }
|
|
||||||
|
|
||||||
type: "staticlibrary"
|
type: "staticlibrary"
|
||||||
|
|
||||||
|
files: [
|
||||||
|
"iptyprocess.h",
|
||||||
|
"ptyqt.cpp",
|
||||||
|
"ptyqt.h",
|
||||||
|
]
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "ptyqt UNIX files"
|
||||||
|
condition: qbs.targetOS.contains("unix")
|
||||||
files: [
|
files: [
|
||||||
"iptyprocess.h",
|
"unixptyprocess.cpp",
|
||||||
"ptyqt.cpp",
|
"unixptyprocess.h",
|
||||||
"ptyqt.h",
|
|
||||||
]
|
]
|
||||||
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "ptyqt UNIX files"
|
name: "ptyqt Windows files"
|
||||||
condition: qbs.targetOS.contains("unix")
|
condition: qbs.targetOS.contains("windows")
|
||||||
files: [
|
files: [
|
||||||
"unixptyprocess.cpp",
|
"conptyprocess.cpp",
|
||||||
"unixptyprocess.h",
|
"conptyprocess.h",
|
||||||
]
|
"winptyprocess.cpp",
|
||||||
}
|
"winptyprocess.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
Group {
|
Export {
|
||||||
name: "ptyqt Windows files"
|
Depends { name: "cpp" }
|
||||||
condition: qbs.targetOS.contains("windows")
|
Depends { name: "winpty"; condition: qbs.targetOS.contains("windows") }
|
||||||
files: [
|
cpp.includePaths: base.concat(exportingProduct.sourceDirectory)
|
||||||
"conptyprocess.cpp",
|
|
||||||
"conptyprocess.h",
|
|
||||||
"winptyprocess.cpp",
|
|
||||||
"winptyprocess.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "cpp" }
|
|
||||||
Depends { name: "winpty"; condition: qbs.targetOS.contains("windows") }
|
|
||||||
cpp.includePaths: base.concat(exportingProduct.sourceDirectory)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
56
src/libs/3rdparty/libvterm/vterm.qbs
vendored
56
src/libs/3rdparty/libvterm/vterm.qbs
vendored
@@ -1,34 +1,32 @@
|
|||||||
Project {
|
QtcLibrary {
|
||||||
QtcLibrary {
|
name: "vterm"
|
||||||
name: "vterm"
|
type: "staticlibrary"
|
||||||
type: "staticlibrary"
|
|
||||||
|
|
||||||
|
Depends { name: "cpp" }
|
||||||
|
cpp.includePaths: base.concat("include")
|
||||||
|
cpp.warningLevel: "none"
|
||||||
|
|
||||||
|
Group {
|
||||||
|
prefix: "src/"
|
||||||
|
files: [
|
||||||
|
"encoding.c",
|
||||||
|
"fullwidth.inc",
|
||||||
|
"keyboard.c",
|
||||||
|
"mouse.c",
|
||||||
|
"parser.c",
|
||||||
|
"pen.c",
|
||||||
|
"rect.h",
|
||||||
|
"screen.c",
|
||||||
|
"state.c",
|
||||||
|
"unicode.c",
|
||||||
|
"utf8.h",
|
||||||
|
"vterm.c",
|
||||||
|
"vterm_internal.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Export {
|
||||||
Depends { name: "cpp" }
|
Depends { name: "cpp" }
|
||||||
cpp.includePaths: base.concat("include")
|
cpp.includePaths: base.concat("include")
|
||||||
cpp.warningLevel: "none"
|
|
||||||
|
|
||||||
Group {
|
|
||||||
prefix: "src/"
|
|
||||||
files: [
|
|
||||||
"encoding.c",
|
|
||||||
"fullwidth.inc",
|
|
||||||
"keyboard.c",
|
|
||||||
"mouse.c",
|
|
||||||
"parser.c",
|
|
||||||
"pen.c",
|
|
||||||
"rect.h",
|
|
||||||
"screen.c",
|
|
||||||
"state.c",
|
|
||||||
"unicode.c",
|
|
||||||
"utf8.h",
|
|
||||||
"vterm.c",
|
|
||||||
"vterm_internal.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "cpp" }
|
|
||||||
cpp.includePaths: base.concat("include")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
198
src/libs/3rdparty/yaml-cpp/yaml-cpp.qbs
vendored
198
src/libs/3rdparty/yaml-cpp/yaml-cpp.qbs
vendored
@@ -1,106 +1,102 @@
|
|||||||
import qbs 1.0
|
QtcLibrary {
|
||||||
|
name: "yaml-cpp"
|
||||||
|
|
||||||
Project {
|
cpp.defines: base.concat(["YAML_CPP_DLL", "yaml_cpp_EXPORTS"])
|
||||||
QtcLibrary {
|
cpp.includePaths: [product.sourceDirectory + "/include/"]
|
||||||
name: "yaml-cpp"
|
|
||||||
|
|
||||||
cpp.defines: base.concat(["YAML_CPP_DLL", "yaml_cpp_EXPORTS"])
|
files: [
|
||||||
cpp.includePaths: [product.sourceDirectory + "/include/"]
|
"include/yaml-cpp/anchor.h",
|
||||||
|
"include/yaml-cpp/binary.h",
|
||||||
|
"include/yaml-cpp/depthguard.h",
|
||||||
|
"include/yaml-cpp/dll.h",
|
||||||
|
"include/yaml-cpp/emitfromevents.h",
|
||||||
|
"include/yaml-cpp/emitter.h",
|
||||||
|
"include/yaml-cpp/emitterdef.h",
|
||||||
|
"include/yaml-cpp/emittermanip.h",
|
||||||
|
"include/yaml-cpp/emitterstyle.h",
|
||||||
|
"include/yaml-cpp/eventhandler.h",
|
||||||
|
"include/yaml-cpp/exceptions.h",
|
||||||
|
"include/yaml-cpp/mark.h",
|
||||||
|
"include/yaml-cpp/noexcept.h",
|
||||||
|
"include/yaml-cpp/node",
|
||||||
|
"include/yaml-cpp/node/convert.h",
|
||||||
|
"include/yaml-cpp/node/detail",
|
||||||
|
"include/yaml-cpp/node/detail/impl.h",
|
||||||
|
"include/yaml-cpp/node/detail/iterator.h",
|
||||||
|
"include/yaml-cpp/node/detail/iterator_fwd.h",
|
||||||
|
"include/yaml-cpp/node/detail/memory.h",
|
||||||
|
"include/yaml-cpp/node/detail/node.h",
|
||||||
|
"include/yaml-cpp/node/detail/node_data.h",
|
||||||
|
"include/yaml-cpp/node/detail/node_iterator.h",
|
||||||
|
"include/yaml-cpp/node/detail/node_ref.h",
|
||||||
|
"include/yaml-cpp/node/emit.h",
|
||||||
|
"include/yaml-cpp/node/impl.h",
|
||||||
|
"include/yaml-cpp/node/iterator.h",
|
||||||
|
"include/yaml-cpp/node/node.h",
|
||||||
|
"include/yaml-cpp/node/parse.h",
|
||||||
|
"include/yaml-cpp/node/ptr.h",
|
||||||
|
"include/yaml-cpp/node/type.h",
|
||||||
|
"include/yaml-cpp/null.h",
|
||||||
|
"include/yaml-cpp/ostream_wrapper.h",
|
||||||
|
"include/yaml-cpp/parser.h",
|
||||||
|
"include/yaml-cpp/stlemitter.h",
|
||||||
|
"include/yaml-cpp/traits.h",
|
||||||
|
"include/yaml-cpp/yaml.h",
|
||||||
|
"src/binary.cpp",
|
||||||
|
"src/collectionstack.h",
|
||||||
|
"src/convert.cpp",
|
||||||
|
"src/depthguard.cpp",
|
||||||
|
"src/directives.cpp",
|
||||||
|
"src/directives.h",
|
||||||
|
"src/emit.cpp",
|
||||||
|
"src/emitfromevents.cpp",
|
||||||
|
"src/emitter.cpp",
|
||||||
|
"src/emitterstate.cpp",
|
||||||
|
"src/emitterstate.h",
|
||||||
|
"src/emitterutils.cpp",
|
||||||
|
"src/emitterutils.h",
|
||||||
|
"src/exceptions.cpp",
|
||||||
|
"src/exp.cpp",
|
||||||
|
"src/exp.h",
|
||||||
|
"src/indentation.h",
|
||||||
|
"src/memory.cpp",
|
||||||
|
"src/node.cpp",
|
||||||
|
"src/node_data.cpp",
|
||||||
|
"src/nodebuilder.cpp",
|
||||||
|
"src/nodebuilder.h",
|
||||||
|
"src/nodeevents.cpp",
|
||||||
|
"src/nodeevents.h",
|
||||||
|
"src/null.cpp",
|
||||||
|
"src/ostream_wrapper.cpp",
|
||||||
|
"src/parse.cpp",
|
||||||
|
"src/parser.cpp",
|
||||||
|
"src/ptr_vector.h",
|
||||||
|
"src/regex_yaml.cpp",
|
||||||
|
"src/regex_yaml.h",
|
||||||
|
"src/regeximpl.h",
|
||||||
|
"src/scanner.cpp",
|
||||||
|
"src/scanner.h",
|
||||||
|
"src/scanscalar.cpp",
|
||||||
|
"src/scanscalar.h",
|
||||||
|
"src/scantag.cpp",
|
||||||
|
"src/scantag.h",
|
||||||
|
"src/scantoken.cpp",
|
||||||
|
"src/setting.h",
|
||||||
|
"src/simplekey.cpp",
|
||||||
|
"src/singledocparser.cpp",
|
||||||
|
"src/singledocparser.h",
|
||||||
|
"src/stream.cpp",
|
||||||
|
"src/stream.h",
|
||||||
|
"src/streamcharsource.h",
|
||||||
|
"src/stringsource.h",
|
||||||
|
"src/tag.cpp",
|
||||||
|
"src/tag.h",
|
||||||
|
"src/token.h",
|
||||||
|
]
|
||||||
|
|
||||||
files: [
|
Export {
|
||||||
"include/yaml-cpp/anchor.h",
|
Depends { name: "cpp" }
|
||||||
"include/yaml-cpp/binary.h",
|
cpp.includePaths: [exportingProduct.sourceDirectory + "/include/"]
|
||||||
"include/yaml-cpp/depthguard.h",
|
cpp.defines: base.concat(["YAML_CPP_DLL"])
|
||||||
"include/yaml-cpp/dll.h",
|
|
||||||
"include/yaml-cpp/emitfromevents.h",
|
|
||||||
"include/yaml-cpp/emitter.h",
|
|
||||||
"include/yaml-cpp/emitterdef.h",
|
|
||||||
"include/yaml-cpp/emittermanip.h",
|
|
||||||
"include/yaml-cpp/emitterstyle.h",
|
|
||||||
"include/yaml-cpp/eventhandler.h",
|
|
||||||
"include/yaml-cpp/exceptions.h",
|
|
||||||
"include/yaml-cpp/mark.h",
|
|
||||||
"include/yaml-cpp/noexcept.h",
|
|
||||||
"include/yaml-cpp/node",
|
|
||||||
"include/yaml-cpp/node/convert.h",
|
|
||||||
"include/yaml-cpp/node/detail",
|
|
||||||
"include/yaml-cpp/node/detail/impl.h",
|
|
||||||
"include/yaml-cpp/node/detail/iterator.h",
|
|
||||||
"include/yaml-cpp/node/detail/iterator_fwd.h",
|
|
||||||
"include/yaml-cpp/node/detail/memory.h",
|
|
||||||
"include/yaml-cpp/node/detail/node.h",
|
|
||||||
"include/yaml-cpp/node/detail/node_data.h",
|
|
||||||
"include/yaml-cpp/node/detail/node_iterator.h",
|
|
||||||
"include/yaml-cpp/node/detail/node_ref.h",
|
|
||||||
"include/yaml-cpp/node/emit.h",
|
|
||||||
"include/yaml-cpp/node/impl.h",
|
|
||||||
"include/yaml-cpp/node/iterator.h",
|
|
||||||
"include/yaml-cpp/node/node.h",
|
|
||||||
"include/yaml-cpp/node/parse.h",
|
|
||||||
"include/yaml-cpp/node/ptr.h",
|
|
||||||
"include/yaml-cpp/node/type.h",
|
|
||||||
"include/yaml-cpp/null.h",
|
|
||||||
"include/yaml-cpp/ostream_wrapper.h",
|
|
||||||
"include/yaml-cpp/parser.h",
|
|
||||||
"include/yaml-cpp/stlemitter.h",
|
|
||||||
"include/yaml-cpp/traits.h",
|
|
||||||
"include/yaml-cpp/yaml.h",
|
|
||||||
"src/binary.cpp",
|
|
||||||
"src/collectionstack.h",
|
|
||||||
"src/convert.cpp",
|
|
||||||
"src/depthguard.cpp",
|
|
||||||
"src/directives.cpp",
|
|
||||||
"src/directives.h",
|
|
||||||
"src/emit.cpp",
|
|
||||||
"src/emitfromevents.cpp",
|
|
||||||
"src/emitter.cpp",
|
|
||||||
"src/emitterstate.cpp",
|
|
||||||
"src/emitterstate.h",
|
|
||||||
"src/emitterutils.cpp",
|
|
||||||
"src/emitterutils.h",
|
|
||||||
"src/exceptions.cpp",
|
|
||||||
"src/exp.cpp",
|
|
||||||
"src/exp.h",
|
|
||||||
"src/indentation.h",
|
|
||||||
"src/memory.cpp",
|
|
||||||
"src/node.cpp",
|
|
||||||
"src/node_data.cpp",
|
|
||||||
"src/nodebuilder.cpp",
|
|
||||||
"src/nodebuilder.h",
|
|
||||||
"src/nodeevents.cpp",
|
|
||||||
"src/nodeevents.h",
|
|
||||||
"src/null.cpp",
|
|
||||||
"src/ostream_wrapper.cpp",
|
|
||||||
"src/parse.cpp",
|
|
||||||
"src/parser.cpp",
|
|
||||||
"src/ptr_vector.h",
|
|
||||||
"src/regex_yaml.cpp",
|
|
||||||
"src/regex_yaml.h",
|
|
||||||
"src/regeximpl.h",
|
|
||||||
"src/scanner.cpp",
|
|
||||||
"src/scanner.h",
|
|
||||||
"src/scanscalar.cpp",
|
|
||||||
"src/scanscalar.h",
|
|
||||||
"src/scantag.cpp",
|
|
||||||
"src/scantag.h",
|
|
||||||
"src/scantoken.cpp",
|
|
||||||
"src/setting.h",
|
|
||||||
"src/simplekey.cpp",
|
|
||||||
"src/singledocparser.cpp",
|
|
||||||
"src/singledocparser.h",
|
|
||||||
"src/stream.cpp",
|
|
||||||
"src/stream.h",
|
|
||||||
"src/streamcharsource.h",
|
|
||||||
"src/stringsource.h",
|
|
||||||
"src/tag.cpp",
|
|
||||||
"src/tag.h",
|
|
||||||
"src/token.h",
|
|
||||||
]
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "cpp" }
|
|
||||||
cpp.includePaths: [exportingProduct.sourceDirectory + "/include/"]
|
|
||||||
cpp.defines: base.concat(["YAML_CPP_DLL"])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,17 +1,12 @@
|
|||||||
import qbs 1.0
|
QtcLibrary {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "Aggregation"
|
name: "Aggregation"
|
||||||
|
Depends { name: "Qt.core" }
|
||||||
|
cpp.defines: base.concat("AGGREGATION_LIBRARY")
|
||||||
|
|
||||||
QtcLibrary {
|
files: [
|
||||||
Depends { name: "Qt.core" }
|
"aggregate.cpp",
|
||||||
cpp.defines: base.concat("AGGREGATION_LIBRARY")
|
"aggregate.h",
|
||||||
|
"aggregation_global.h",
|
||||||
files: [
|
]
|
||||||
"aggregate.cpp",
|
|
||||||
"aggregate.h",
|
|
||||||
"aggregation_global.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,135 +1,131 @@
|
|||||||
import qbs 1.0
|
QtcLibrary {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "CPlusPlus"
|
name: "CPlusPlus"
|
||||||
|
|
||||||
QtcLibrary {
|
cpp.includePaths: base.concat("../3rdparty")
|
||||||
cpp.includePaths: base.concat("../3rdparty")
|
cpp.defines: base.concat([
|
||||||
cpp.defines: base.concat([
|
"NDEBUG",
|
||||||
"NDEBUG",
|
"CPLUSPLUS_BUILD_LIB"
|
||||||
"CPLUSPLUS_BUILD_LIB"
|
])
|
||||||
])
|
cpp.optimization: "fast"
|
||||||
cpp.optimization: "fast"
|
|
||||||
|
|
||||||
Depends { name: "Qt.widgets" }
|
Depends { name: "Qt.widgets" }
|
||||||
Depends { name: "Utils" }
|
Depends { name: "Utils" }
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "ThirdPartyCPlusPlus"
|
name: "ThirdPartyCPlusPlus"
|
||||||
prefix: "../3rdparty/cplusplus/"
|
prefix: "../3rdparty/cplusplus/"
|
||||||
files: [
|
files: [
|
||||||
"AST.cpp",
|
"AST.cpp",
|
||||||
"AST.h",
|
"AST.h",
|
||||||
"ASTClone.cpp",
|
"ASTClone.cpp",
|
||||||
"ASTMatch0.cpp",
|
"ASTMatch0.cpp",
|
||||||
"ASTMatcher.cpp",
|
"ASTMatcher.cpp",
|
||||||
"ASTMatcher.h",
|
"ASTMatcher.h",
|
||||||
"ASTPatternBuilder.h",
|
"ASTPatternBuilder.h",
|
||||||
"ASTVisit.cpp",
|
"ASTVisit.cpp",
|
||||||
"ASTVisitor.cpp",
|
"ASTVisitor.cpp",
|
||||||
"ASTVisitor.h",
|
"ASTVisitor.h",
|
||||||
"ASTfwd.h",
|
"ASTfwd.h",
|
||||||
"Bind.cpp",
|
"Bind.cpp",
|
||||||
"Bind.h",
|
"Bind.h",
|
||||||
"CPlusPlus.h",
|
"CPlusPlus.h",
|
||||||
"Control.cpp",
|
"Control.cpp",
|
||||||
"Control.h",
|
"Control.h",
|
||||||
"CoreTypes.cpp",
|
"CoreTypes.cpp",
|
||||||
"CoreTypes.h",
|
"CoreTypes.h",
|
||||||
"DiagnosticClient.cpp",
|
"DiagnosticClient.cpp",
|
||||||
"DiagnosticClient.h",
|
"DiagnosticClient.h",
|
||||||
"FullySpecifiedType.cpp",
|
"FullySpecifiedType.cpp",
|
||||||
"FullySpecifiedType.h",
|
"FullySpecifiedType.h",
|
||||||
"Keywords.cpp",
|
"Keywords.cpp",
|
||||||
"Keywords.kwgen",
|
"Keywords.kwgen",
|
||||||
"Lexer.cpp",
|
"Lexer.cpp",
|
||||||
"Lexer.h",
|
"Lexer.h",
|
||||||
"LiteralTable.h",
|
"LiteralTable.h",
|
||||||
"Literals.cpp",
|
"Literals.cpp",
|
||||||
"Literals.h",
|
"Literals.h",
|
||||||
"Matcher.cpp",
|
"Matcher.cpp",
|
||||||
"Matcher.h",
|
"Matcher.h",
|
||||||
"MemoryPool.cpp",
|
"MemoryPool.cpp",
|
||||||
"MemoryPool.h",
|
"MemoryPool.h",
|
||||||
"Name.cpp",
|
"Name.cpp",
|
||||||
"Name.h",
|
"Name.h",
|
||||||
"NameVisitor.cpp",
|
"NameVisitor.cpp",
|
||||||
"NameVisitor.h",
|
"NameVisitor.h",
|
||||||
"Names.cpp",
|
"Names.cpp",
|
||||||
"Names.h",
|
"Names.h",
|
||||||
"ObjectiveCAtKeywords.cpp",
|
"ObjectiveCAtKeywords.cpp",
|
||||||
"ObjectiveCTypeQualifiers.cpp",
|
"ObjectiveCTypeQualifiers.cpp",
|
||||||
"ObjectiveCTypeQualifiers.h",
|
"ObjectiveCTypeQualifiers.h",
|
||||||
"Parser.cpp",
|
"Parser.cpp",
|
||||||
"Parser.h",
|
"Parser.h",
|
||||||
"QtContextKeywords.cpp",
|
"QtContextKeywords.cpp",
|
||||||
"QtContextKeywords.h",
|
"QtContextKeywords.h",
|
||||||
"SafeMatcher.cpp",
|
"SafeMatcher.cpp",
|
||||||
"SafeMatcher.h",
|
"SafeMatcher.h",
|
||||||
"Scope.cpp",
|
"Scope.cpp",
|
||||||
"Scope.h",
|
"Scope.h",
|
||||||
"Symbol.cpp",
|
"Symbol.cpp",
|
||||||
"Symbol.h",
|
"Symbol.h",
|
||||||
"SymbolVisitor.h",
|
"SymbolVisitor.h",
|
||||||
"Symbols.cpp",
|
"Symbols.cpp",
|
||||||
"Symbols.h",
|
"Symbols.h",
|
||||||
"Templates.cpp",
|
"Templates.cpp",
|
||||||
"Templates.h",
|
"Templates.h",
|
||||||
"Token.cpp",
|
"Token.cpp",
|
||||||
"Token.h",
|
"Token.h",
|
||||||
"TranslationUnit.cpp",
|
"TranslationUnit.cpp",
|
||||||
"TranslationUnit.h",
|
"TranslationUnit.h",
|
||||||
"Type.cpp",
|
"Type.cpp",
|
||||||
"Type.h",
|
"Type.h",
|
||||||
"TypeVisitor.cpp",
|
"TypeVisitor.cpp",
|
||||||
"TypeVisitor.h",
|
"TypeVisitor.h",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "General"
|
name: "General"
|
||||||
files: [
|
files: [
|
||||||
"AlreadyConsideredClassContainer.h",
|
"AlreadyConsideredClassContainer.h",
|
||||||
"ASTParent.cpp", "ASTParent.h",
|
"ASTParent.cpp", "ASTParent.h",
|
||||||
"ASTPath.cpp", "ASTPath.h",
|
"ASTPath.cpp", "ASTPath.h",
|
||||||
"BackwardsScanner.cpp", "BackwardsScanner.h",
|
"BackwardsScanner.cpp", "BackwardsScanner.h",
|
||||||
"CppDocument.cpp", "CppDocument.h",
|
"CppDocument.cpp", "CppDocument.h",
|
||||||
"CppRewriter.cpp", "CppRewriter.h",
|
"CppRewriter.cpp", "CppRewriter.h",
|
||||||
"cppmodelmanagerbase.cpp", "cppmodelmanagerbase.h",
|
"cppmodelmanagerbase.cpp", "cppmodelmanagerbase.h",
|
||||||
"declarationcomments.cpp", "declarationcomments.h",
|
"declarationcomments.cpp", "declarationcomments.h",
|
||||||
"DependencyTable.cpp", "DependencyTable.h",
|
"DependencyTable.cpp", "DependencyTable.h",
|
||||||
"DeprecatedGenTemplateInstance.cpp", "DeprecatedGenTemplateInstance.h",
|
"DeprecatedGenTemplateInstance.cpp", "DeprecatedGenTemplateInstance.h",
|
||||||
"ExpressionUnderCursor.cpp", "ExpressionUnderCursor.h",
|
"ExpressionUnderCursor.cpp", "ExpressionUnderCursor.h",
|
||||||
"FastPreprocessor.cpp", "FastPreprocessor.h",
|
"FastPreprocessor.cpp", "FastPreprocessor.h",
|
||||||
"FindUsages.cpp", "FindUsages.h",
|
"FindUsages.cpp", "FindUsages.h",
|
||||||
"Icons.cpp", "Icons.h",
|
"Icons.cpp", "Icons.h",
|
||||||
"LookupContext.cpp", "LookupContext.h",
|
"LookupContext.cpp", "LookupContext.h",
|
||||||
"LookupItem.cpp", "LookupItem.h",
|
"LookupItem.cpp", "LookupItem.h",
|
||||||
"Macro.cpp", "Macro.h",
|
"Macro.cpp", "Macro.h",
|
||||||
"MatchingText.cpp", "MatchingText.h",
|
"MatchingText.cpp", "MatchingText.h",
|
||||||
"NamePrettyPrinter.cpp", "NamePrettyPrinter.h",
|
"NamePrettyPrinter.cpp", "NamePrettyPrinter.h",
|
||||||
"Overview.cpp", "Overview.h",
|
"Overview.cpp", "Overview.h",
|
||||||
"PPToken.cpp", "PPToken.h",
|
"PPToken.cpp", "PPToken.h",
|
||||||
"PreprocessorClient.cpp", "PreprocessorClient.h",
|
"PreprocessorClient.cpp", "PreprocessorClient.h",
|
||||||
"PreprocessorEnvironment.cpp", "PreprocessorEnvironment.h",
|
"PreprocessorEnvironment.cpp", "PreprocessorEnvironment.h",
|
||||||
"ResolveExpression.cpp", "ResolveExpression.h",
|
"ResolveExpression.cpp", "ResolveExpression.h",
|
||||||
"SimpleLexer.cpp", "SimpleLexer.h",
|
"SimpleLexer.cpp", "SimpleLexer.h",
|
||||||
"SnapshotSymbolVisitor.cpp", "SnapshotSymbolVisitor.h",
|
"SnapshotSymbolVisitor.cpp", "SnapshotSymbolVisitor.h",
|
||||||
"SymbolNameVisitor.cpp", "SymbolNameVisitor.h",
|
"SymbolNameVisitor.cpp", "SymbolNameVisitor.h",
|
||||||
"TypeOfExpression.cpp", "TypeOfExpression.h",
|
"TypeOfExpression.cpp", "TypeOfExpression.h",
|
||||||
"TypePrettyPrinter.cpp", "TypePrettyPrinter.h",
|
"TypePrettyPrinter.cpp", "TypePrettyPrinter.h",
|
||||||
"findcdbbreakpoint.cpp", "findcdbbreakpoint.h",
|
"findcdbbreakpoint.cpp", "findcdbbreakpoint.h",
|
||||||
"pp-cctype.h",
|
"pp-cctype.h",
|
||||||
"pp-engine.cpp", "pp-engine.h",
|
"pp-engine.cpp", "pp-engine.h",
|
||||||
"pp-scanner.cpp", "pp-scanner.h",
|
"pp-scanner.cpp", "pp-scanner.h",
|
||||||
"pp.h",
|
"pp.h",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
Export {
|
Export {
|
||||||
cpp.includePaths: [
|
cpp.includePaths: [
|
||||||
exportingProduct.sourceDirectory + "/../3rdparty"
|
exportingProduct.sourceDirectory + "/../3rdparty"
|
||||||
]
|
]
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,45 +1,41 @@
|
|||||||
import qbs 1.0
|
QtcLibrary {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "ExtensionSystem"
|
name: "ExtensionSystem"
|
||||||
|
|
||||||
QtcLibrary {
|
cpp.defines: base.concat([
|
||||||
cpp.defines: base.concat([
|
"EXTENSIONSYSTEM_LIBRARY",
|
||||||
"EXTENSIONSYSTEM_LIBRARY",
|
"IDE_TEST_DIR=\".\""
|
||||||
"IDE_TEST_DIR=\".\""
|
])
|
||||||
])
|
|
||||||
|
|
||||||
Depends { name: "Qt"; submodules: ["core", "widgets"] }
|
Depends { name: "Qt"; submodules: ["core", "widgets"] }
|
||||||
Depends { name: "Aggregation" }
|
Depends { name: "Aggregation" }
|
||||||
Depends { name: "Utils" }
|
Depends { name: "Utils" }
|
||||||
|
|
||||||
files: [
|
files: [
|
||||||
"extensionsystem_global.h",
|
"extensionsystem_global.h",
|
||||||
"extensionsystemtr.h",
|
"extensionsystemtr.h",
|
||||||
"invoker.cpp",
|
"invoker.cpp",
|
||||||
"invoker.h",
|
"invoker.h",
|
||||||
"iplugin.cpp",
|
"iplugin.cpp",
|
||||||
"iplugin.h",
|
"iplugin.h",
|
||||||
"optionsparser.cpp",
|
"optionsparser.cpp",
|
||||||
"optionsparser.h",
|
"optionsparser.h",
|
||||||
"plugindetailsview.cpp",
|
"plugindetailsview.cpp",
|
||||||
"plugindetailsview.h",
|
"plugindetailsview.h",
|
||||||
"pluginerroroverview.cpp",
|
"pluginerroroverview.cpp",
|
||||||
"pluginerroroverview.h",
|
"pluginerroroverview.h",
|
||||||
"pluginerrorview.cpp",
|
"pluginerrorview.cpp",
|
||||||
"pluginerrorview.h",
|
"pluginerrorview.h",
|
||||||
"pluginmanager.cpp",
|
"pluginmanager.cpp",
|
||||||
"pluginmanager.h",
|
"pluginmanager.h",
|
||||||
"pluginmanager_p.h",
|
"pluginmanager_p.h",
|
||||||
"pluginspec.cpp",
|
"pluginspec.cpp",
|
||||||
"pluginspec.h",
|
"pluginspec.h",
|
||||||
"pluginspec_p.h",
|
"pluginspec_p.h",
|
||||||
"pluginview.cpp",
|
"pluginview.cpp",
|
||||||
"pluginview.h",
|
"pluginview.h",
|
||||||
]
|
]
|
||||||
|
|
||||||
Export {
|
Export {
|
||||||
Depends { name: "Qt.core" }
|
Depends { name: "Qt.core" }
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,54 +1,50 @@
|
|||||||
import qbs 1.0
|
QtcLibrary {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "LanguageServerProtocol"
|
name: "LanguageServerProtocol"
|
||||||
|
|
||||||
QtcLibrary {
|
Depends { name: "Utils" }
|
||||||
Depends { name: "Utils" }
|
cpp.defines: base.concat("LANGUAGESERVERPROTOCOL_LIBRARY")
|
||||||
cpp.defines: base.concat("LANGUAGESERVERPROTOCOL_LIBRARY")
|
|
||||||
|
|
||||||
files: [
|
files: [
|
||||||
"basemessage.cpp",
|
"basemessage.cpp",
|
||||||
"basemessage.h",
|
"basemessage.h",
|
||||||
"callhierarchy.cpp",
|
"callhierarchy.cpp",
|
||||||
"callhierarchy.h",
|
"callhierarchy.h",
|
||||||
"client.cpp",
|
"client.cpp",
|
||||||
"client.h",
|
"client.h",
|
||||||
"clientcapabilities.cpp",
|
"clientcapabilities.cpp",
|
||||||
"clientcapabilities.h",
|
"clientcapabilities.h",
|
||||||
"completion.cpp",
|
"completion.cpp",
|
||||||
"completion.h",
|
"completion.h",
|
||||||
"diagnostics.cpp",
|
"diagnostics.cpp",
|
||||||
"diagnostics.h",
|
"diagnostics.h",
|
||||||
"initializemessages.cpp",
|
"initializemessages.cpp",
|
||||||
"initializemessages.h",
|
"initializemessages.h",
|
||||||
"jsonkeys.h",
|
"jsonkeys.h",
|
||||||
"jsonobject.cpp",
|
"jsonobject.cpp",
|
||||||
"jsonobject.h",
|
"jsonobject.h",
|
||||||
"jsonrpcmessages.cpp",
|
"jsonrpcmessages.cpp",
|
||||||
"jsonrpcmessages.h",
|
"jsonrpcmessages.h",
|
||||||
"languagefeatures.cpp",
|
"languagefeatures.cpp",
|
||||||
"languagefeatures.h",
|
"languagefeatures.h",
|
||||||
"languageserverprotocol_global.h",
|
"languageserverprotocol_global.h",
|
||||||
"languageserverprotocoltr.h",
|
"languageserverprotocoltr.h",
|
||||||
"lsptypes.cpp",
|
"lsptypes.cpp",
|
||||||
"lsptypes.h",
|
"lsptypes.h",
|
||||||
"lsputils.cpp",
|
"lsputils.cpp",
|
||||||
"lsputils.h",
|
"lsputils.h",
|
||||||
"messages.cpp",
|
"messages.cpp",
|
||||||
"messages.h",
|
"messages.h",
|
||||||
"progresssupport.cpp",
|
"progresssupport.cpp",
|
||||||
"progresssupport.h",
|
"progresssupport.h",
|
||||||
"semantictokens.cpp",
|
"semantictokens.cpp",
|
||||||
"semantictokens.h",
|
"semantictokens.h",
|
||||||
"servercapabilities.cpp",
|
"servercapabilities.cpp",
|
||||||
"servercapabilities.h",
|
"servercapabilities.h",
|
||||||
"shutdownmessages.cpp",
|
"shutdownmessages.cpp",
|
||||||
"shutdownmessages.h",
|
"shutdownmessages.h",
|
||||||
"textsynchronization.cpp",
|
"textsynchronization.cpp",
|
||||||
"textsynchronization.h",
|
"textsynchronization.h",
|
||||||
"workspace.cpp",
|
"workspace.cpp",
|
||||||
"workspace.h",
|
"workspace.h",
|
||||||
]
|
]
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,16 @@
|
|||||||
import qbs 1.0
|
QtcLibrary {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "LanguageUtils"
|
name: "LanguageUtils"
|
||||||
|
|
||||||
QtcLibrary {
|
cpp.defines: base.concat(["LANGUAGEUTILS_LIBRARY"])
|
||||||
cpp.defines: base.concat(["LANGUAGEUTILS_LIBRARY"])
|
cpp.optimization: "fast"
|
||||||
cpp.optimization: "fast"
|
|
||||||
|
|
||||||
Depends { name: "Qt.core" }
|
Depends { name: "Qt.core" }
|
||||||
|
|
||||||
files: [
|
files: [
|
||||||
"componentversion.cpp",
|
"componentversion.cpp",
|
||||||
"componentversion.h",
|
"componentversion.h",
|
||||||
"fakemetaobject.cpp",
|
"fakemetaobject.cpp",
|
||||||
"fakemetaobject.h",
|
"fakemetaobject.h",
|
||||||
"languageutils_global.h",
|
"languageutils_global.h",
|
||||||
]
|
]
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,40 +1,36 @@
|
|||||||
import qbs 1.0
|
QtcLibrary {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "QmlDebug"
|
name: "QmlDebug"
|
||||||
|
|
||||||
QtcLibrary {
|
cpp.defines: base.concat("QMLDEBUG_LIBRARY")
|
||||||
cpp.defines: base.concat("QMLDEBUG_LIBRARY")
|
|
||||||
|
|
||||||
Depends { name: "Qt"; submodules: ["gui", "network"] }
|
Depends { name: "Qt"; submodules: ["gui", "network"] }
|
||||||
Depends { name: "Utils" }
|
Depends { name: "Utils" }
|
||||||
|
|
||||||
files: [
|
files: [
|
||||||
"baseenginedebugclient.cpp",
|
"baseenginedebugclient.cpp",
|
||||||
"baseenginedebugclient.h",
|
"baseenginedebugclient.h",
|
||||||
"basetoolsclient.cpp",
|
"basetoolsclient.cpp",
|
||||||
"basetoolsclient.h",
|
"basetoolsclient.h",
|
||||||
"qdebugmessageclient.cpp",
|
"qdebugmessageclient.cpp",
|
||||||
"qdebugmessageclient.h",
|
"qdebugmessageclient.h",
|
||||||
"qmldebug_global.h",
|
"qmldebug_global.h",
|
||||||
"qmldebugtr.h",
|
"qmldebugtr.h",
|
||||||
"qmldebugclient.cpp",
|
"qmldebugclient.cpp",
|
||||||
"qmldebugclient.h",
|
"qmldebugclient.h",
|
||||||
"qmldebugcommandlinearguments.h",
|
"qmldebugcommandlinearguments.h",
|
||||||
"qmldebugconnection.cpp",
|
"qmldebugconnection.cpp",
|
||||||
"qmldebugconnection.h",
|
"qmldebugconnection.h",
|
||||||
"qmldebugconnectionmanager.cpp",
|
"qmldebugconnectionmanager.cpp",
|
||||||
"qmldebugconnectionmanager.h",
|
"qmldebugconnectionmanager.h",
|
||||||
"qmldebugconstants.h",
|
"qmldebugconstants.h",
|
||||||
"qmlenginecontrolclient.cpp",
|
"qmlenginecontrolclient.cpp",
|
||||||
"qmlenginecontrolclient.h",
|
"qmlenginecontrolclient.h",
|
||||||
"qmlenginedebugclient.h",
|
"qmlenginedebugclient.h",
|
||||||
"qmloutputparser.cpp",
|
"qmloutputparser.cpp",
|
||||||
"qmloutputparser.h",
|
"qmloutputparser.h",
|
||||||
"qmltoolsclient.cpp",
|
"qmltoolsclient.cpp",
|
||||||
"qmltoolsclient.h",
|
"qmltoolsclient.h",
|
||||||
"qpacketprotocol.cpp",
|
"qpacketprotocol.cpp",
|
||||||
"qpacketprotocol.h",
|
"qpacketprotocol.h",
|
||||||
]
|
]
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,83 +1,79 @@
|
|||||||
import qbs 1.0
|
QtcLibrary {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "QmlJS"
|
name: "QmlJS"
|
||||||
|
|
||||||
QtcLibrary {
|
cpp.defines: base.concat(["QMLJS_LIBRARY"])
|
||||||
cpp.defines: base.concat(["QMLJS_LIBRARY"])
|
cpp.optimization: "fast"
|
||||||
cpp.optimization: "fast"
|
|
||||||
|
|
||||||
Depends { name: "ExtensionSystem" }
|
Depends { name: "ExtensionSystem" }
|
||||||
Depends { name: "Utils" }
|
Depends { name: "Utils" }
|
||||||
Depends { name: "LanguageUtils" }
|
Depends { name: "LanguageUtils" }
|
||||||
|
Depends { name: "CPlusPlus" }
|
||||||
|
Depends { name: "Qt"; submodules: ["widgets", "xml"] }
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "General"
|
||||||
|
files: [
|
||||||
|
"jsoncheck.cpp", "jsoncheck.h",
|
||||||
|
"persistenttrie.cpp", "persistenttrie.h",
|
||||||
|
"qmljs_global.h",
|
||||||
|
"qmljsbind.cpp", "qmljsbind.h",
|
||||||
|
"qmljsbundle.cpp", "qmljsbundle.h",
|
||||||
|
"qmljscheck.cpp", "qmljscheck.h",
|
||||||
|
"qmljscodeformatter.cpp", "qmljscodeformatter.h",
|
||||||
|
"qmljscompletioncontextfinder.cpp", "qmljscompletioncontextfinder.h",
|
||||||
|
"qmljsconstants.h",
|
||||||
|
"qmljscontext.cpp", "qmljscontext.h",
|
||||||
|
"qmljsdocument.cpp", "qmljsdocument.h",
|
||||||
|
"qmljsevaluate.cpp", "qmljsevaluate.h",
|
||||||
|
"qmljsfindexportedcpptypes.cpp", "qmljsfindexportedcpptypes.h",
|
||||||
|
"qmljsicons.cpp", "qmljsicons.h",
|
||||||
|
"qmljsimportdependencies.cpp", "qmljsimportdependencies.h",
|
||||||
|
"qmljsindenter.cpp", "qmljsindenter.h",
|
||||||
|
"qmljsinterpreter.cpp", "qmljsinterpreter.h",
|
||||||
|
"qmljsdialect.cpp", "qmljsdialect.h",
|
||||||
|
"qmljslineinfo.cpp", "qmljslineinfo.h",
|
||||||
|
"qmljslink.cpp", "qmljslink.h",
|
||||||
|
"qmljsmodelmanagerinterface.cpp", "qmljsmodelmanagerinterface.h",
|
||||||
|
"qmljsplugindumper.cpp", "qmljsplugindumper.h",
|
||||||
|
"qmljspropertyreader.cpp", "qmljspropertyreader.h",
|
||||||
|
"qmljsreformatter.cpp", "qmljsreformatter.h",
|
||||||
|
"qmljsrewriter.cpp", "qmljsrewriter.h",
|
||||||
|
"qmljsscanner.cpp", "qmljsscanner.h",
|
||||||
|
"qmljsscopeastpath.cpp", "qmljsscopeastpath.h",
|
||||||
|
"qmljsscopebuilder.cpp", "qmljsscopebuilder.h",
|
||||||
|
"qmljsscopechain.cpp", "qmljsscopechain.h",
|
||||||
|
"qmljssimplereader.cpp", "qmljssimplereader.h",
|
||||||
|
"qmljsstaticanalysismessage.cpp", "qmljsstaticanalysismessage.h",
|
||||||
|
"qmljstr.h",
|
||||||
|
"qmljstypedescriptionreader.cpp", "qmljstypedescriptionreader.h",
|
||||||
|
"qmljsutils.cpp", "qmljsutils.h",
|
||||||
|
"qmljsvalueowner.cpp", "qmljsvalueowner.h",
|
||||||
|
"qmljsviewercontext.h"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Parser"
|
||||||
|
prefix: "parser/"
|
||||||
|
files: [
|
||||||
|
"qmldirparser.cpp", "qmldirparser_p.h",
|
||||||
|
"qmlimportresolver.cpp", "qmlimportresolver_p.h",
|
||||||
|
"qmljsast.cpp", "qmljsast_p.h",
|
||||||
|
"qmljsastfwd_p.h",
|
||||||
|
"qmljsastvisitor.cpp", "qmljsastvisitor_p.h",
|
||||||
|
"qmljsengine_p.h",
|
||||||
|
"qmljsglobal_p.h",
|
||||||
|
"qmljsgrammar.cpp", "qmljsgrammar_p.h",
|
||||||
|
"qmljskeywords_p.h",
|
||||||
|
"qmljslexer.cpp", "qmljslexer_p.h",
|
||||||
|
"qmljsmemorypool_p.h",
|
||||||
|
"qmljsparser.cpp", "qmljsparser_p.h",
|
||||||
|
"qmljssourcelocation_p.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Export {
|
||||||
Depends { name: "CPlusPlus" }
|
Depends { name: "CPlusPlus" }
|
||||||
Depends { name: "Qt"; submodules: ["widgets", "xml"] }
|
Depends { name: "LanguageUtils" }
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "General"
|
|
||||||
files: [
|
|
||||||
"jsoncheck.cpp", "jsoncheck.h",
|
|
||||||
"persistenttrie.cpp", "persistenttrie.h",
|
|
||||||
"qmljs_global.h",
|
|
||||||
"qmljsbind.cpp", "qmljsbind.h",
|
|
||||||
"qmljsbundle.cpp", "qmljsbundle.h",
|
|
||||||
"qmljscheck.cpp", "qmljscheck.h",
|
|
||||||
"qmljscodeformatter.cpp", "qmljscodeformatter.h",
|
|
||||||
"qmljscompletioncontextfinder.cpp", "qmljscompletioncontextfinder.h",
|
|
||||||
"qmljsconstants.h",
|
|
||||||
"qmljscontext.cpp", "qmljscontext.h",
|
|
||||||
"qmljsdocument.cpp", "qmljsdocument.h",
|
|
||||||
"qmljsevaluate.cpp", "qmljsevaluate.h",
|
|
||||||
"qmljsfindexportedcpptypes.cpp", "qmljsfindexportedcpptypes.h",
|
|
||||||
"qmljsicons.cpp", "qmljsicons.h",
|
|
||||||
"qmljsimportdependencies.cpp", "qmljsimportdependencies.h",
|
|
||||||
"qmljsindenter.cpp", "qmljsindenter.h",
|
|
||||||
"qmljsinterpreter.cpp", "qmljsinterpreter.h",
|
|
||||||
"qmljsdialect.cpp", "qmljsdialect.h",
|
|
||||||
"qmljslineinfo.cpp", "qmljslineinfo.h",
|
|
||||||
"qmljslink.cpp", "qmljslink.h",
|
|
||||||
"qmljsmodelmanagerinterface.cpp", "qmljsmodelmanagerinterface.h",
|
|
||||||
"qmljsplugindumper.cpp", "qmljsplugindumper.h",
|
|
||||||
"qmljspropertyreader.cpp", "qmljspropertyreader.h",
|
|
||||||
"qmljsreformatter.cpp", "qmljsreformatter.h",
|
|
||||||
"qmljsrewriter.cpp", "qmljsrewriter.h",
|
|
||||||
"qmljsscanner.cpp", "qmljsscanner.h",
|
|
||||||
"qmljsscopeastpath.cpp", "qmljsscopeastpath.h",
|
|
||||||
"qmljsscopebuilder.cpp", "qmljsscopebuilder.h",
|
|
||||||
"qmljsscopechain.cpp", "qmljsscopechain.h",
|
|
||||||
"qmljssimplereader.cpp", "qmljssimplereader.h",
|
|
||||||
"qmljsstaticanalysismessage.cpp", "qmljsstaticanalysismessage.h",
|
|
||||||
"qmljstr.h",
|
|
||||||
"qmljstypedescriptionreader.cpp", "qmljstypedescriptionreader.h",
|
|
||||||
"qmljsutils.cpp", "qmljsutils.h",
|
|
||||||
"qmljsvalueowner.cpp", "qmljsvalueowner.h",
|
|
||||||
"qmljsviewercontext.h"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Parser"
|
|
||||||
prefix: "parser/"
|
|
||||||
files: [
|
|
||||||
"qmldirparser.cpp", "qmldirparser_p.h",
|
|
||||||
"qmlimportresolver.cpp", "qmlimportresolver_p.h",
|
|
||||||
"qmljsast.cpp", "qmljsast_p.h",
|
|
||||||
"qmljsastfwd_p.h",
|
|
||||||
"qmljsastvisitor.cpp", "qmljsastvisitor_p.h",
|
|
||||||
"qmljsengine_p.h",
|
|
||||||
"qmljsglobal_p.h",
|
|
||||||
"qmljsgrammar.cpp", "qmljsgrammar_p.h",
|
|
||||||
"qmljskeywords_p.h",
|
|
||||||
"qmljslexer.cpp", "qmljslexer_p.h",
|
|
||||||
"qmljsmemorypool_p.h",
|
|
||||||
"qmljsparser.cpp", "qmljsparser_p.h",
|
|
||||||
"qmljssourcelocation_p.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "CPlusPlus" }
|
|
||||||
Depends { name: "LanguageUtils" }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,52 +1,46 @@
|
|||||||
import qbs 1.0
|
QtcLibrary {
|
||||||
|
|
||||||
import QtcLibrary
|
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "Tracing"
|
name: "Tracing"
|
||||||
|
|
||||||
QtcLibrary {
|
Depends { name: "Qt"; submodules: ["qml", "quick", "gui"] }
|
||||||
Depends { name: "Qt"; submodules: ["qml", "quick", "gui"] }
|
Depends { name: "Qt.testlib"; condition: project.withAutotests }
|
||||||
Depends { name: "Qt.testlib"; condition: project.withAutotests }
|
Depends { name: "Utils" }
|
||||||
Depends { name: "Utils" }
|
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "General"
|
name: "General"
|
||||||
files: [
|
files: [
|
||||||
"README",
|
"README",
|
||||||
"flamegraph.cpp", "flamegraph.h",
|
"flamegraph.cpp", "flamegraph.h",
|
||||||
"flamegraphattached.h",
|
"flamegraphattached.h",
|
||||||
"safecastable.h",
|
"safecastable.h",
|
||||||
"timelineabstractrenderer.cpp", "timelineabstractrenderer.h",
|
"timelineabstractrenderer.cpp", "timelineabstractrenderer.h",
|
||||||
"timelineabstractrenderer_p.h",
|
"timelineabstractrenderer_p.h",
|
||||||
"timelineformattime.cpp", "timelineformattime.h",
|
"timelineformattime.cpp", "timelineformattime.h",
|
||||||
"timelineitemsrenderpass.cpp", "timelineitemsrenderpass.h",
|
"timelineitemsrenderpass.cpp", "timelineitemsrenderpass.h",
|
||||||
"timelinemodel.cpp", "timelinemodel.h", "timelinemodel_p.h",
|
"timelinemodel.cpp", "timelinemodel.h", "timelinemodel_p.h",
|
||||||
"timelinemodelaggregator.cpp", "timelinemodelaggregator.h",
|
"timelinemodelaggregator.cpp", "timelinemodelaggregator.h",
|
||||||
"timelinenotesmodel.cpp", "timelinenotesmodel.h", "timelinenotesmodel_p.h",
|
"timelinenotesmodel.cpp", "timelinenotesmodel.h", "timelinenotesmodel_p.h",
|
||||||
"timelinenotesrenderpass.cpp", "timelinenotesrenderpass.h",
|
"timelinenotesrenderpass.cpp", "timelinenotesrenderpass.h",
|
||||||
"timelineoverviewrenderer.cpp", "timelineoverviewrenderer.h",
|
"timelineoverviewrenderer.cpp", "timelineoverviewrenderer.h",
|
||||||
"timelineoverviewrenderer_p.h",
|
"timelineoverviewrenderer_p.h",
|
||||||
"timelinerenderer.cpp", "timelinerenderer.h", "timelinerenderer_p.h",
|
"timelinerenderer.cpp", "timelinerenderer.h", "timelinerenderer_p.h",
|
||||||
"timelinerenderpass.cpp", "timelinerenderpass.h",
|
"timelinerenderpass.cpp", "timelinerenderpass.h",
|
||||||
"timelinerenderstate.cpp", "timelinerenderstate.h", "timelinerenderstate_p.h",
|
"timelinerenderstate.cpp", "timelinerenderstate.h", "timelinerenderstate_p.h",
|
||||||
"timelineselectionrenderpass.cpp", "timelineselectionrenderpass.h",
|
"timelineselectionrenderpass.cpp", "timelineselectionrenderpass.h",
|
||||||
"timelinetheme.cpp", "timelinetheme.h",
|
"timelinetheme.cpp", "timelinetheme.h",
|
||||||
"timelinetracefile.cpp", "timelinetracefile.h",
|
"timelinetracefile.cpp", "timelinetracefile.h",
|
||||||
"timelinetracemanager.cpp", "timelinetracemanager.h",
|
"timelinetracemanager.cpp", "timelinetracemanager.h",
|
||||||
"timelinezoomcontrol.cpp", "timelinezoomcontrol.h",
|
"timelinezoomcontrol.cpp", "timelinezoomcontrol.h",
|
||||||
"traceevent.h", "traceeventtype.h", "tracestashfile.h",
|
"traceevent.h", "traceeventtype.h", "tracestashfile.h",
|
||||||
"tracingtr.h",
|
"tracingtr.h",
|
||||||
]
|
]
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Qml Files"
|
|
||||||
Qt.core.resourcePrefix: "qt/qml/QtCreator/Tracing/"
|
|
||||||
fileTags: "qt.core.resource_data"
|
|
||||||
files: "qml/**"
|
|
||||||
}
|
|
||||||
|
|
||||||
cpp.defines: base.concat("TRACING_LIBRARY")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Qml Files"
|
||||||
|
Qt.core.resourcePrefix: "qt/qml/QtCreator/Tracing/"
|
||||||
|
fileTags: "qt.core.resource_data"
|
||||||
|
files: "qml/**"
|
||||||
|
}
|
||||||
|
|
||||||
|
cpp.defines: base.concat("TRACING_LIBRARY")
|
||||||
}
|
}
|
||||||
|
@@ -1,481 +1,475 @@
|
|||||||
import qbs 1.0
|
|
||||||
import qbs.FileInfo
|
import qbs.FileInfo
|
||||||
|
|
||||||
Project {
|
QtcLibrary {
|
||||||
name: "Utils"
|
name: "Utils"
|
||||||
|
cpp.includePaths: base.concat("mimetypes2", ".")
|
||||||
QtcLibrary {
|
cpp.defines: base.concat(["UTILS_LIBRARY"])
|
||||||
cpp.includePaths: base.concat("mimetypes2", ".")
|
cpp.dynamicLibraries: {
|
||||||
cpp.defines: base.concat([
|
var libs = [];
|
||||||
"UTILS_LIBRARY"
|
if (qbs.targetOS.contains("windows")) {
|
||||||
])
|
libs.push("user32", "iphlpapi", "ws2_32", "shell32", "ole32");
|
||||||
cpp.dynamicLibraries: {
|
if (qbs.toolchainType === "mingw")
|
||||||
var libs = [];
|
libs.push("uuid");
|
||||||
if (qbs.targetOS.contains("windows")) {
|
else if (qbs.toolchainType === "msvc")
|
||||||
libs.push("user32", "iphlpapi", "ws2_32", "shell32", "ole32");
|
libs.push("dbghelp");
|
||||||
if (qbs.toolchainType === "mingw")
|
} else if (qbs.targetOS.contains("unix")) {
|
||||||
libs.push("uuid");
|
if (!qbs.targetOS.contains("macos"))
|
||||||
else if (qbs.toolchainType === "msvc")
|
libs.push("X11");
|
||||||
libs.push("dbghelp");
|
if (!qbs.targetOS.contains("openbsd"))
|
||||||
} else if (qbs.targetOS.contains("unix")) {
|
libs.push("pthread");
|
||||||
if (!qbs.targetOS.contains("macos"))
|
|
||||||
libs.push("X11");
|
|
||||||
if (!qbs.targetOS.contains("openbsd"))
|
|
||||||
libs.push("pthread");
|
|
||||||
}
|
|
||||||
return libs;
|
|
||||||
}
|
}
|
||||||
|
return libs;
|
||||||
|
}
|
||||||
|
|
||||||
cpp.enableExceptions: true
|
cpp.enableExceptions: true
|
||||||
|
|
||||||
Properties {
|
Properties {
|
||||||
condition: qbs.targetOS.contains("macos")
|
condition: qbs.targetOS.contains("macos")
|
||||||
cpp.frameworks: ["Foundation", "AppKit"]
|
cpp.frameworks: ["Foundation", "AppKit"]
|
||||||
}
|
}
|
||||||
|
|
||||||
Depends { name: "Qt"; submodules: ["concurrent", "core-private", "network", "qml", "widgets", "xml"] }
|
Depends { name: "Qt"; submodules: ["concurrent", "core-private", "network", "qml", "widgets", "xml"] }
|
||||||
Depends { name: "Qt.macextras"; condition: Qt.core.versionMajor < 6 && qbs.targetOS.contains("macos") }
|
Depends { name: "Qt.macextras"; condition: Qt.core.versionMajor < 6 && qbs.targetOS.contains("macos") }
|
||||||
Depends { name: "Spinner" }
|
Depends { name: "Spinner" }
|
||||||
Depends { name: "Tasking" }
|
Depends { name: "Tasking" }
|
||||||
Depends { name: "ptyqt" }
|
Depends { name: "ptyqt" }
|
||||||
|
|
||||||
|
files: [
|
||||||
|
"algorithm.h",
|
||||||
|
"ansiescapecodehandler.cpp",
|
||||||
|
"ansiescapecodehandler.h",
|
||||||
|
"appinfo.cpp",
|
||||||
|
"appinfo.h",
|
||||||
|
"appmainwindow.cpp",
|
||||||
|
"appmainwindow.h",
|
||||||
|
"aspects.cpp",
|
||||||
|
"aspects.h",
|
||||||
|
"async.cpp",
|
||||||
|
"async.h",
|
||||||
|
"basetreeview.cpp",
|
||||||
|
"basetreeview.h",
|
||||||
|
"benchmarker.cpp",
|
||||||
|
"benchmarker.h",
|
||||||
|
"buildablehelperlibrary.cpp",
|
||||||
|
"buildablehelperlibrary.h",
|
||||||
|
"camelcasecursor.cpp",
|
||||||
|
"camelcasecursor.h",
|
||||||
|
"categorysortfiltermodel.cpp",
|
||||||
|
"categorysortfiltermodel.h",
|
||||||
|
"changeset.cpp",
|
||||||
|
"changeset.h",
|
||||||
|
"checkablemessagebox.cpp",
|
||||||
|
"checkablemessagebox.h",
|
||||||
|
"clangutils.cpp",
|
||||||
|
"clangutils.h",
|
||||||
|
"classnamevalidatinglineedit.cpp",
|
||||||
|
"classnamevalidatinglineedit.h",
|
||||||
|
"codegeneration.cpp",
|
||||||
|
"codegeneration.h",
|
||||||
|
"commandline.cpp",
|
||||||
|
"commandline.h",
|
||||||
|
"completinglineedit.cpp",
|
||||||
|
"completinglineedit.h",
|
||||||
|
"completingtextedit.cpp",
|
||||||
|
"completingtextedit.h",
|
||||||
|
"cpplanguage_details.h",
|
||||||
|
"crumblepath.cpp",
|
||||||
|
"crumblepath.h",
|
||||||
|
"delegates.cpp",
|
||||||
|
"delegates.h",
|
||||||
|
"detailsbutton.cpp",
|
||||||
|
"detailsbutton.h",
|
||||||
|
"detailswidget.cpp",
|
||||||
|
"detailswidget.h",
|
||||||
|
"devicefileaccess.cpp",
|
||||||
|
"devicefileaccess.h",
|
||||||
|
"deviceshell.cpp",
|
||||||
|
"deviceshell.h",
|
||||||
|
"differ.cpp",
|
||||||
|
"differ.h",
|
||||||
|
"displayname.cpp",
|
||||||
|
"displayname.h",
|
||||||
|
"dropsupport.cpp",
|
||||||
|
"dropsupport.h",
|
||||||
|
"elfreader.cpp",
|
||||||
|
"elfreader.h",
|
||||||
|
"elidinglabel.cpp",
|
||||||
|
"elidinglabel.h",
|
||||||
|
"environment.cpp",
|
||||||
|
"environment.h",
|
||||||
|
"environmentdialog.cpp",
|
||||||
|
"environmentdialog.h",
|
||||||
|
"environmentmodel.cpp",
|
||||||
|
"environmentmodel.h",
|
||||||
|
"execmenu.cpp",
|
||||||
|
"execmenu.h",
|
||||||
|
"externalterminalprocessimpl.cpp",
|
||||||
|
"externalterminalprocessimpl.h",
|
||||||
|
"fadingindicator.cpp",
|
||||||
|
"fadingindicator.h",
|
||||||
|
"faketooltip.cpp",
|
||||||
|
"faketooltip.h",
|
||||||
|
"fancylineedit.cpp",
|
||||||
|
"fancylineedit.h",
|
||||||
|
"fancymainwindow.cpp",
|
||||||
|
"fancymainwindow.h",
|
||||||
|
"filecrumblabel.cpp",
|
||||||
|
"filecrumblabel.h",
|
||||||
|
"fileinprojectfinder.cpp",
|
||||||
|
"fileinprojectfinder.h",
|
||||||
|
"filenamevalidatinglineedit.cpp",
|
||||||
|
"filenamevalidatinglineedit.h",
|
||||||
|
"filepath.cpp",
|
||||||
|
"filepath.h",
|
||||||
|
"filesearch.cpp",
|
||||||
|
"filesearch.h",
|
||||||
|
"filestreamer.cpp",
|
||||||
|
"filestreamer.h",
|
||||||
|
"filestreamermanager.cpp",
|
||||||
|
"filestreamermanager.h",
|
||||||
|
"filesystemmodel.cpp",
|
||||||
|
"filesystemmodel.h",
|
||||||
|
"filesystemwatcher.cpp",
|
||||||
|
"filesystemwatcher.h",
|
||||||
|
"fileutils.cpp",
|
||||||
|
"fileutils.h",
|
||||||
|
"filewizardpage.cpp",
|
||||||
|
"filewizardpage.h",
|
||||||
|
"fixedsizeclicklabel.cpp",
|
||||||
|
"fixedsizeclicklabel.h",
|
||||||
|
"flowlayout.cpp",
|
||||||
|
"flowlayout.h",
|
||||||
|
"futuresynchronizer.cpp",
|
||||||
|
"futuresynchronizer.h",
|
||||||
|
"fuzzymatcher.cpp",
|
||||||
|
"fuzzymatcher.h",
|
||||||
|
"globalfilechangeblocker.cpp",
|
||||||
|
"globalfilechangeblocker.h",
|
||||||
|
"guard.cpp",
|
||||||
|
"guard.h",
|
||||||
|
"highlightingitemdelegate.cpp",
|
||||||
|
"highlightingitemdelegate.h",
|
||||||
|
"historycompleter.cpp",
|
||||||
|
"historycompleter.h",
|
||||||
|
"hostosinfo.h",
|
||||||
|
"hostosinfo.cpp",
|
||||||
|
"htmldocextractor.cpp",
|
||||||
|
"htmldocextractor.h",
|
||||||
|
"icon.cpp",
|
||||||
|
"icon.h",
|
||||||
|
"id.cpp",
|
||||||
|
"id.h",
|
||||||
|
"indexedcontainerproxyconstiterator.h",
|
||||||
|
"infobar.cpp",
|
||||||
|
"infobar.h",
|
||||||
|
"infolabel.cpp",
|
||||||
|
"infolabel.h",
|
||||||
|
"itemviews.cpp",
|
||||||
|
"itemviews.h",
|
||||||
|
"jsontreeitem.cpp",
|
||||||
|
"jsontreeitem.h",
|
||||||
|
"launcherinterface.cpp",
|
||||||
|
"launcherinterface.h",
|
||||||
|
"launcherpackets.cpp",
|
||||||
|
"launcherpackets.h",
|
||||||
|
"launchersocket.cpp",
|
||||||
|
"launchersocket.h",
|
||||||
|
"layoutbuilder.cpp",
|
||||||
|
"layoutbuilder.h",
|
||||||
|
"link.cpp",
|
||||||
|
"link.h",
|
||||||
|
"listmodel.h",
|
||||||
|
"listutils.h",
|
||||||
|
"macroexpander.cpp",
|
||||||
|
"macroexpander.h",
|
||||||
|
"mathutils.cpp",
|
||||||
|
"mathutils.h",
|
||||||
|
"mimeutils.h",
|
||||||
|
"minimizableinfobars.cpp",
|
||||||
|
"minimizableinfobars.h",
|
||||||
|
"multitextcursor.cpp",
|
||||||
|
"multitextcursor.h",
|
||||||
|
"namevaluedictionary.cpp",
|
||||||
|
"namevaluedictionary.h",
|
||||||
|
"namevalueitem.cpp",
|
||||||
|
"namevalueitem.h",
|
||||||
|
"namevaluemodel.cpp",
|
||||||
|
"namevaluemodel.h",
|
||||||
|
"namevaluesdialog.cpp",
|
||||||
|
"namevaluesdialog.h",
|
||||||
|
"namevaluevalidator.cpp",
|
||||||
|
"namevaluevalidator.h",
|
||||||
|
"navigationtreeview.cpp",
|
||||||
|
"navigationtreeview.h",
|
||||||
|
"networkaccessmanager.cpp",
|
||||||
|
"networkaccessmanager.h",
|
||||||
|
"optionpushbutton.h",
|
||||||
|
"optionpushbutton.cpp",
|
||||||
|
"osspecificaspects.h",
|
||||||
|
"outputformat.h",
|
||||||
|
"outputformatter.cpp",
|
||||||
|
"outputformatter.h",
|
||||||
|
"overlaywidget.cpp",
|
||||||
|
"overlaywidget.h",
|
||||||
|
"overridecursor.cpp",
|
||||||
|
"overridecursor.h",
|
||||||
|
"parameteraction.cpp",
|
||||||
|
"parameteraction.h",
|
||||||
|
"passworddialog.cpp",
|
||||||
|
"passworddialog.h",
|
||||||
|
"pathchooser.cpp",
|
||||||
|
"pathchooser.h",
|
||||||
|
"pathlisteditor.cpp",
|
||||||
|
"pathlisteditor.h",
|
||||||
|
"persistentcachestore.cpp",
|
||||||
|
"persistentcachestore.h",
|
||||||
|
"persistentsettings.cpp",
|
||||||
|
"persistentsettings.h",
|
||||||
|
"pointeralgorithm.h",
|
||||||
|
"port.cpp",
|
||||||
|
"port.h",
|
||||||
|
"portlist.cpp",
|
||||||
|
"portlist.h",
|
||||||
|
"predicates.h",
|
||||||
|
"process.cpp",
|
||||||
|
"process.h",
|
||||||
|
"processenums.h",
|
||||||
|
"processhandle.cpp",
|
||||||
|
"processhandle.h",
|
||||||
|
"processinfo.cpp",
|
||||||
|
"processinfo.h",
|
||||||
|
"processinterface.cpp",
|
||||||
|
"processinterface.h",
|
||||||
|
"processreaper.cpp",
|
||||||
|
"processreaper.h",
|
||||||
|
"processutils.cpp",
|
||||||
|
"processutils.h",
|
||||||
|
"progressindicator.cpp",
|
||||||
|
"progressindicator.h",
|
||||||
|
"projectintropage.cpp",
|
||||||
|
"projectintropage.h",
|
||||||
|
"proxyaction.cpp",
|
||||||
|
"proxyaction.h",
|
||||||
|
"qrcparser.cpp",
|
||||||
|
"qrcparser.h",
|
||||||
|
"qtcassert.cpp",
|
||||||
|
"qtcassert.h",
|
||||||
|
"qtcolorbutton.cpp",
|
||||||
|
"qtcolorbutton.h",
|
||||||
|
"qtcsettings.cpp",
|
||||||
|
"qtcsettings.h",
|
||||||
|
"reloadpromptutils.cpp",
|
||||||
|
"reloadpromptutils.h",
|
||||||
|
"removefiledialog.cpp",
|
||||||
|
"removefiledialog.h",
|
||||||
|
"savefile.cpp",
|
||||||
|
"savefile.h",
|
||||||
|
"scopedswap.h",
|
||||||
|
"scopedtimer.cpp",
|
||||||
|
"scopedtimer.h",
|
||||||
|
"searchresultitem.cpp",
|
||||||
|
"searchresultitem.h",
|
||||||
|
"set_algorithm.h",
|
||||||
|
"settingsaccessor.cpp",
|
||||||
|
"settingsaccessor.h",
|
||||||
|
"settingsselector.cpp",
|
||||||
|
"settingsselector.h",
|
||||||
|
"singleton.cpp",
|
||||||
|
"singleton.h",
|
||||||
|
"sizedarray.h",
|
||||||
|
"smallstring.h",
|
||||||
|
"smallstringiterator.h",
|
||||||
|
"smallstringio.h",
|
||||||
|
"smallstringliteral.h",
|
||||||
|
"smallstringlayout.h",
|
||||||
|
"smallstringmemory.h",
|
||||||
|
"smallstringvector.h",
|
||||||
|
"sortfiltermodel.h",
|
||||||
|
"span.h",
|
||||||
|
"../3rdparty/span/span.hpp",
|
||||||
|
"statuslabel.cpp",
|
||||||
|
"statuslabel.h",
|
||||||
|
"store.cpp",
|
||||||
|
"store.h",
|
||||||
|
"storekey.h",
|
||||||
|
"stringtable.cpp",
|
||||||
|
"stringtable.h",
|
||||||
|
"stringutils.cpp",
|
||||||
|
"stringutils.h",
|
||||||
|
"styleanimator.cpp",
|
||||||
|
"styleanimator.h",
|
||||||
|
"styledbar.cpp",
|
||||||
|
"styledbar.h",
|
||||||
|
"stylehelper.cpp",
|
||||||
|
"stylehelper.h",
|
||||||
|
"templateengine.cpp",
|
||||||
|
"templateengine.h",
|
||||||
|
"temporarydirectory.cpp",
|
||||||
|
"temporarydirectory.h",
|
||||||
|
"temporaryfile.cpp",
|
||||||
|
"temporaryfile.h",
|
||||||
|
"terminalcommand.cpp",
|
||||||
|
"terminalcommand.h",
|
||||||
|
"terminalhooks.cpp",
|
||||||
|
"terminalhooks.h",
|
||||||
|
"terminalinterface.cpp",
|
||||||
|
"terminalinterface.h",
|
||||||
|
"textfieldcheckbox.cpp",
|
||||||
|
"textfieldcheckbox.h",
|
||||||
|
"textfieldcombobox.cpp",
|
||||||
|
"textfieldcombobox.h",
|
||||||
|
"textfileformat.cpp",
|
||||||
|
"textfileformat.h",
|
||||||
|
"textutils.cpp",
|
||||||
|
"textutils.h",
|
||||||
|
"threadutils.cpp",
|
||||||
|
"threadutils.h",
|
||||||
|
"treemodel.cpp",
|
||||||
|
"treemodel.h",
|
||||||
|
"treeviewcombobox.cpp",
|
||||||
|
"treeviewcombobox.h",
|
||||||
|
"headerviewstretcher.cpp",
|
||||||
|
"headerviewstretcher.h",
|
||||||
|
"unarchiver.cpp",
|
||||||
|
"unarchiver.h",
|
||||||
|
"uncommentselection.cpp",
|
||||||
|
"uncommentselection.h",
|
||||||
|
"uniqueobjectptr.h",
|
||||||
|
"unixutils.cpp",
|
||||||
|
"unixutils.h",
|
||||||
|
"url.cpp",
|
||||||
|
"url.h",
|
||||||
|
"utils.qrc",
|
||||||
|
"utils_global.h",
|
||||||
|
"utilsicons.h",
|
||||||
|
"utilsicons.cpp",
|
||||||
|
"utilstr.h",
|
||||||
|
"variablechooser.cpp",
|
||||||
|
"variablechooser.h",
|
||||||
|
"winutils.cpp",
|
||||||
|
"winutils.h",
|
||||||
|
"wizard.cpp",
|
||||||
|
"wizard.h",
|
||||||
|
"wizardpage.cpp",
|
||||||
|
"wizardpage.h",
|
||||||
|
"images/*.png",
|
||||||
|
]
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "FSEngine"
|
||||||
|
prefix: "fsengine/"
|
||||||
|
cpp.defines: outer.concat("QTC_UTILS_WITH_FSENGINE")
|
||||||
files: [
|
files: [
|
||||||
"algorithm.h",
|
"diriterator.h",
|
||||||
"ansiescapecodehandler.cpp",
|
"fileiconprovider.cpp",
|
||||||
"ansiescapecodehandler.h",
|
"fileiconprovider.h",
|
||||||
"appinfo.cpp",
|
"fileiteratordevicesappender.h",
|
||||||
"appinfo.h",
|
"fixedlistfsengine.h",
|
||||||
"appmainwindow.cpp",
|
"fsengine.cpp",
|
||||||
"appmainwindow.h",
|
"fsengine.h",
|
||||||
"aspects.cpp",
|
"fsenginehandler.cpp",
|
||||||
"aspects.h",
|
"fsenginehandler.h",
|
||||||
"async.cpp",
|
"fsengine_impl.cpp",
|
||||||
"async.h",
|
"fsengine_impl.h",
|
||||||
"basetreeview.cpp",
|
"rootinjectfsengine.h",
|
||||||
"basetreeview.h",
|
|
||||||
"benchmarker.cpp",
|
|
||||||
"benchmarker.h",
|
|
||||||
"buildablehelperlibrary.cpp",
|
|
||||||
"buildablehelperlibrary.h",
|
|
||||||
"camelcasecursor.cpp",
|
|
||||||
"camelcasecursor.h",
|
|
||||||
"categorysortfiltermodel.cpp",
|
|
||||||
"categorysortfiltermodel.h",
|
|
||||||
"changeset.cpp",
|
|
||||||
"changeset.h",
|
|
||||||
"checkablemessagebox.cpp",
|
|
||||||
"checkablemessagebox.h",
|
|
||||||
"clangutils.cpp",
|
|
||||||
"clangutils.h",
|
|
||||||
"classnamevalidatinglineedit.cpp",
|
|
||||||
"classnamevalidatinglineedit.h",
|
|
||||||
"codegeneration.cpp",
|
|
||||||
"codegeneration.h",
|
|
||||||
"commandline.cpp",
|
|
||||||
"commandline.h",
|
|
||||||
"completinglineedit.cpp",
|
|
||||||
"completinglineedit.h",
|
|
||||||
"completingtextedit.cpp",
|
|
||||||
"completingtextedit.h",
|
|
||||||
"cpplanguage_details.h",
|
|
||||||
"crumblepath.cpp",
|
|
||||||
"crumblepath.h",
|
|
||||||
"delegates.cpp",
|
|
||||||
"delegates.h",
|
|
||||||
"detailsbutton.cpp",
|
|
||||||
"detailsbutton.h",
|
|
||||||
"detailswidget.cpp",
|
|
||||||
"detailswidget.h",
|
|
||||||
"devicefileaccess.cpp",
|
|
||||||
"devicefileaccess.h",
|
|
||||||
"deviceshell.cpp",
|
|
||||||
"deviceshell.h",
|
|
||||||
"differ.cpp",
|
|
||||||
"differ.h",
|
|
||||||
"displayname.cpp",
|
|
||||||
"displayname.h",
|
|
||||||
"dropsupport.cpp",
|
|
||||||
"dropsupport.h",
|
|
||||||
"elfreader.cpp",
|
|
||||||
"elfreader.h",
|
|
||||||
"elidinglabel.cpp",
|
|
||||||
"elidinglabel.h",
|
|
||||||
"environment.cpp",
|
|
||||||
"environment.h",
|
|
||||||
"environmentdialog.cpp",
|
|
||||||
"environmentdialog.h",
|
|
||||||
"environmentmodel.cpp",
|
|
||||||
"environmentmodel.h",
|
|
||||||
"execmenu.cpp",
|
|
||||||
"execmenu.h",
|
|
||||||
"externalterminalprocessimpl.cpp",
|
|
||||||
"externalterminalprocessimpl.h",
|
|
||||||
"fadingindicator.cpp",
|
|
||||||
"fadingindicator.h",
|
|
||||||
"faketooltip.cpp",
|
|
||||||
"faketooltip.h",
|
|
||||||
"fancylineedit.cpp",
|
|
||||||
"fancylineedit.h",
|
|
||||||
"fancymainwindow.cpp",
|
|
||||||
"fancymainwindow.h",
|
|
||||||
"filecrumblabel.cpp",
|
|
||||||
"filecrumblabel.h",
|
|
||||||
"fileinprojectfinder.cpp",
|
|
||||||
"fileinprojectfinder.h",
|
|
||||||
"filenamevalidatinglineedit.cpp",
|
|
||||||
"filenamevalidatinglineedit.h",
|
|
||||||
"filepath.cpp",
|
|
||||||
"filepath.h",
|
|
||||||
"filesearch.cpp",
|
|
||||||
"filesearch.h",
|
|
||||||
"filestreamer.cpp",
|
|
||||||
"filestreamer.h",
|
|
||||||
"filestreamermanager.cpp",
|
|
||||||
"filestreamermanager.h",
|
|
||||||
"filesystemmodel.cpp",
|
|
||||||
"filesystemmodel.h",
|
|
||||||
"filesystemwatcher.cpp",
|
|
||||||
"filesystemwatcher.h",
|
|
||||||
"fileutils.cpp",
|
|
||||||
"fileutils.h",
|
|
||||||
"filewizardpage.cpp",
|
|
||||||
"filewizardpage.h",
|
|
||||||
"fixedsizeclicklabel.cpp",
|
|
||||||
"fixedsizeclicklabel.h",
|
|
||||||
"flowlayout.cpp",
|
|
||||||
"flowlayout.h",
|
|
||||||
"futuresynchronizer.cpp",
|
|
||||||
"futuresynchronizer.h",
|
|
||||||
"fuzzymatcher.cpp",
|
|
||||||
"fuzzymatcher.h",
|
|
||||||
"globalfilechangeblocker.cpp",
|
|
||||||
"globalfilechangeblocker.h",
|
|
||||||
"guard.cpp",
|
|
||||||
"guard.h",
|
|
||||||
"highlightingitemdelegate.cpp",
|
|
||||||
"highlightingitemdelegate.h",
|
|
||||||
"historycompleter.cpp",
|
|
||||||
"historycompleter.h",
|
|
||||||
"hostosinfo.h",
|
|
||||||
"hostosinfo.cpp",
|
|
||||||
"htmldocextractor.cpp",
|
|
||||||
"htmldocextractor.h",
|
|
||||||
"icon.cpp",
|
|
||||||
"icon.h",
|
|
||||||
"id.cpp",
|
|
||||||
"id.h",
|
|
||||||
"indexedcontainerproxyconstiterator.h",
|
|
||||||
"infobar.cpp",
|
|
||||||
"infobar.h",
|
|
||||||
"infolabel.cpp",
|
|
||||||
"infolabel.h",
|
|
||||||
"itemviews.cpp",
|
|
||||||
"itemviews.h",
|
|
||||||
"jsontreeitem.cpp",
|
|
||||||
"jsontreeitem.h",
|
|
||||||
"launcherinterface.cpp",
|
|
||||||
"launcherinterface.h",
|
|
||||||
"launcherpackets.cpp",
|
|
||||||
"launcherpackets.h",
|
|
||||||
"launchersocket.cpp",
|
|
||||||
"launchersocket.h",
|
|
||||||
"layoutbuilder.cpp",
|
|
||||||
"layoutbuilder.h",
|
|
||||||
"link.cpp",
|
|
||||||
"link.h",
|
|
||||||
"listmodel.h",
|
|
||||||
"listutils.h",
|
|
||||||
"macroexpander.cpp",
|
|
||||||
"macroexpander.h",
|
|
||||||
"mathutils.cpp",
|
|
||||||
"mathutils.h",
|
|
||||||
"mimeutils.h",
|
|
||||||
"minimizableinfobars.cpp",
|
|
||||||
"minimizableinfobars.h",
|
|
||||||
"multitextcursor.cpp",
|
|
||||||
"multitextcursor.h",
|
|
||||||
"namevaluedictionary.cpp",
|
|
||||||
"namevaluedictionary.h",
|
|
||||||
"namevalueitem.cpp",
|
|
||||||
"namevalueitem.h",
|
|
||||||
"namevaluemodel.cpp",
|
|
||||||
"namevaluemodel.h",
|
|
||||||
"namevaluesdialog.cpp",
|
|
||||||
"namevaluesdialog.h",
|
|
||||||
"namevaluevalidator.cpp",
|
|
||||||
"namevaluevalidator.h",
|
|
||||||
"navigationtreeview.cpp",
|
|
||||||
"navigationtreeview.h",
|
|
||||||
"networkaccessmanager.cpp",
|
|
||||||
"networkaccessmanager.h",
|
|
||||||
"optionpushbutton.h",
|
|
||||||
"optionpushbutton.cpp",
|
|
||||||
"osspecificaspects.h",
|
|
||||||
"outputformat.h",
|
|
||||||
"outputformatter.cpp",
|
|
||||||
"outputformatter.h",
|
|
||||||
"overlaywidget.cpp",
|
|
||||||
"overlaywidget.h",
|
|
||||||
"overridecursor.cpp",
|
|
||||||
"overridecursor.h",
|
|
||||||
"parameteraction.cpp",
|
|
||||||
"parameteraction.h",
|
|
||||||
"passworddialog.cpp",
|
|
||||||
"passworddialog.h",
|
|
||||||
"pathchooser.cpp",
|
|
||||||
"pathchooser.h",
|
|
||||||
"pathlisteditor.cpp",
|
|
||||||
"pathlisteditor.h",
|
|
||||||
"persistentcachestore.cpp",
|
|
||||||
"persistentcachestore.h",
|
|
||||||
"persistentsettings.cpp",
|
|
||||||
"persistentsettings.h",
|
|
||||||
"pointeralgorithm.h",
|
|
||||||
"port.cpp",
|
|
||||||
"port.h",
|
|
||||||
"portlist.cpp",
|
|
||||||
"portlist.h",
|
|
||||||
"predicates.h",
|
|
||||||
"process.cpp",
|
|
||||||
"process.h",
|
|
||||||
"processenums.h",
|
|
||||||
"processhandle.cpp",
|
|
||||||
"processhandle.h",
|
|
||||||
"processinfo.cpp",
|
|
||||||
"processinfo.h",
|
|
||||||
"processinterface.cpp",
|
|
||||||
"processinterface.h",
|
|
||||||
"processreaper.cpp",
|
|
||||||
"processreaper.h",
|
|
||||||
"processutils.cpp",
|
|
||||||
"processutils.h",
|
|
||||||
"progressindicator.cpp",
|
|
||||||
"progressindicator.h",
|
|
||||||
"projectintropage.cpp",
|
|
||||||
"projectintropage.h",
|
|
||||||
"proxyaction.cpp",
|
|
||||||
"proxyaction.h",
|
|
||||||
"qrcparser.cpp",
|
|
||||||
"qrcparser.h",
|
|
||||||
"qtcassert.cpp",
|
|
||||||
"qtcassert.h",
|
|
||||||
"qtcolorbutton.cpp",
|
|
||||||
"qtcolorbutton.h",
|
|
||||||
"qtcsettings.cpp",
|
|
||||||
"qtcsettings.h",
|
|
||||||
"reloadpromptutils.cpp",
|
|
||||||
"reloadpromptutils.h",
|
|
||||||
"removefiledialog.cpp",
|
|
||||||
"removefiledialog.h",
|
|
||||||
"savefile.cpp",
|
|
||||||
"savefile.h",
|
|
||||||
"scopedswap.h",
|
|
||||||
"scopedtimer.cpp",
|
|
||||||
"scopedtimer.h",
|
|
||||||
"searchresultitem.cpp",
|
|
||||||
"searchresultitem.h",
|
|
||||||
"set_algorithm.h",
|
|
||||||
"settingsaccessor.cpp",
|
|
||||||
"settingsaccessor.h",
|
|
||||||
"settingsselector.cpp",
|
|
||||||
"settingsselector.h",
|
|
||||||
"singleton.cpp",
|
|
||||||
"singleton.h",
|
|
||||||
"sizedarray.h",
|
|
||||||
"smallstring.h",
|
|
||||||
"smallstringiterator.h",
|
|
||||||
"smallstringio.h",
|
|
||||||
"smallstringliteral.h",
|
|
||||||
"smallstringlayout.h",
|
|
||||||
"smallstringmemory.h",
|
|
||||||
"smallstringvector.h",
|
|
||||||
"sortfiltermodel.h",
|
|
||||||
"span.h",
|
|
||||||
"../3rdparty/span/span.hpp",
|
|
||||||
"statuslabel.cpp",
|
|
||||||
"statuslabel.h",
|
|
||||||
"store.cpp",
|
|
||||||
"store.h",
|
|
||||||
"storekey.h",
|
|
||||||
"stringtable.cpp",
|
|
||||||
"stringtable.h",
|
|
||||||
"stringutils.cpp",
|
|
||||||
"stringutils.h",
|
|
||||||
"styleanimator.cpp",
|
|
||||||
"styleanimator.h",
|
|
||||||
"styledbar.cpp",
|
|
||||||
"styledbar.h",
|
|
||||||
"stylehelper.cpp",
|
|
||||||
"stylehelper.h",
|
|
||||||
"templateengine.cpp",
|
|
||||||
"templateengine.h",
|
|
||||||
"temporarydirectory.cpp",
|
|
||||||
"temporarydirectory.h",
|
|
||||||
"temporaryfile.cpp",
|
|
||||||
"temporaryfile.h",
|
|
||||||
"terminalcommand.cpp",
|
|
||||||
"terminalcommand.h",
|
|
||||||
"terminalhooks.cpp",
|
|
||||||
"terminalhooks.h",
|
|
||||||
"terminalinterface.cpp",
|
|
||||||
"terminalinterface.h",
|
|
||||||
"textfieldcheckbox.cpp",
|
|
||||||
"textfieldcheckbox.h",
|
|
||||||
"textfieldcombobox.cpp",
|
|
||||||
"textfieldcombobox.h",
|
|
||||||
"textfileformat.cpp",
|
|
||||||
"textfileformat.h",
|
|
||||||
"textutils.cpp",
|
|
||||||
"textutils.h",
|
|
||||||
"threadutils.cpp",
|
|
||||||
"threadutils.h",
|
|
||||||
"treemodel.cpp",
|
|
||||||
"treemodel.h",
|
|
||||||
"treeviewcombobox.cpp",
|
|
||||||
"treeviewcombobox.h",
|
|
||||||
"headerviewstretcher.cpp",
|
|
||||||
"headerviewstretcher.h",
|
|
||||||
"unarchiver.cpp",
|
|
||||||
"unarchiver.h",
|
|
||||||
"uncommentselection.cpp",
|
|
||||||
"uncommentselection.h",
|
|
||||||
"uniqueobjectptr.h",
|
|
||||||
"unixutils.cpp",
|
|
||||||
"unixutils.h",
|
|
||||||
"url.cpp",
|
|
||||||
"url.h",
|
|
||||||
"utils.qrc",
|
|
||||||
"utils_global.h",
|
|
||||||
"utilsicons.h",
|
|
||||||
"utilsicons.cpp",
|
|
||||||
"utilstr.h",
|
|
||||||
"variablechooser.cpp",
|
|
||||||
"variablechooser.h",
|
|
||||||
"winutils.cpp",
|
|
||||||
"winutils.h",
|
|
||||||
"wizard.cpp",
|
|
||||||
"wizard.h",
|
|
||||||
"wizardpage.cpp",
|
|
||||||
"wizardpage.h",
|
|
||||||
"images/*.png",
|
|
||||||
]
|
]
|
||||||
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "FSEngine"
|
name: "Theme"
|
||||||
prefix: "fsengine/"
|
prefix: "theme/"
|
||||||
cpp.defines: outer.concat("QTC_UTILS_WITH_FSENGINE")
|
files: [
|
||||||
files: [
|
"theme.cpp",
|
||||||
"diriterator.h",
|
"theme.h",
|
||||||
"fileiconprovider.cpp",
|
"theme_p.h",
|
||||||
"fileiconprovider.h",
|
]
|
||||||
"fileiteratordevicesappender.h",
|
}
|
||||||
"fixedlistfsengine.h",
|
|
||||||
"fsengine.cpp",
|
|
||||||
"fsengine.h",
|
|
||||||
"fsenginehandler.cpp",
|
|
||||||
"fsenginehandler.h",
|
|
||||||
"fsengine_impl.cpp",
|
|
||||||
"fsengine_impl.h",
|
|
||||||
"rootinjectfsengine.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "Theme"
|
name: "Tooltip"
|
||||||
prefix: "theme/"
|
prefix: "tooltip/"
|
||||||
files: [
|
files: [
|
||||||
"theme.cpp",
|
"effects.h",
|
||||||
"theme.h",
|
"tips.cpp",
|
||||||
"theme_p.h",
|
"tips.h",
|
||||||
]
|
"tooltip.cpp",
|
||||||
}
|
"tooltip.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "Tooltip"
|
name: "FileUtils_macos"
|
||||||
prefix: "tooltip/"
|
condition: qbs.targetOS.contains("macos")
|
||||||
files: [
|
files: [
|
||||||
"effects.h",
|
"fileutils_mac.h", "fileutils_mac.mm",
|
||||||
"tips.cpp",
|
]
|
||||||
"tips.h",
|
}
|
||||||
"tooltip.cpp",
|
|
||||||
"tooltip.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Theme_macos"
|
||||||
|
condition: qbs.targetOS.contains("macos")
|
||||||
|
prefix: "theme/"
|
||||||
|
files: [
|
||||||
|
"theme_mac.h", "theme_mac.mm",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "ProcessHandle_macos"
|
||||||
|
condition: qbs.targetOS.contains("macos")
|
||||||
|
files: [
|
||||||
|
"processhandle_mac.mm",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "MimeTypes"
|
||||||
|
prefix: "mimetypes2/"
|
||||||
|
files: [
|
||||||
|
"mimedatabase.cpp",
|
||||||
|
"mimedatabase.h",
|
||||||
|
"mimedatabase_p.h",
|
||||||
|
"mimeglobpattern.cpp",
|
||||||
|
"mimeglobpattern_p.h",
|
||||||
|
"mimemagicrule.cpp",
|
||||||
|
"mimemagicrule_p.h",
|
||||||
|
"mimemagicrulematcher.cpp",
|
||||||
|
"mimemagicrulematcher_p.h",
|
||||||
|
"mimeprovider.cpp",
|
||||||
|
"mimeprovider_p.h",
|
||||||
|
"mimetype.cpp",
|
||||||
|
"mimetype.h",
|
||||||
|
"mimetype_p.h",
|
||||||
|
"mimetypeparser.cpp",
|
||||||
|
"mimetypeparser_p.h",
|
||||||
|
"mimeutils.cpp"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "TouchBar support"
|
||||||
|
prefix: "touchbar/"
|
||||||
|
files: "touchbar.h"
|
||||||
Group {
|
Group {
|
||||||
name: "FileUtils_macos"
|
name: "TouchBar implementation"
|
||||||
condition: qbs.targetOS.contains("macos")
|
condition: qbs.targetOS.contains("macos")
|
||||||
files: [
|
files: [
|
||||||
"fileutils_mac.h", "fileutils_mac.mm",
|
"touchbar_appdelegate_mac_p.h",
|
||||||
|
"touchbar_mac_p.h",
|
||||||
|
"touchbar_mac.mm",
|
||||||
|
"touchbar_appdelegate_mac.mm",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "Theme_macos"
|
name: "TouchBar stub"
|
||||||
condition: qbs.targetOS.contains("macos")
|
condition: !qbs.targetOS.contains("macos")
|
||||||
prefix: "theme/"
|
files: "touchbar.cpp"
|
||||||
files: [
|
|
||||||
"theme_mac.h", "theme_mac.mm",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "ProcessHandle_macos"
|
|
||||||
condition: qbs.targetOS.contains("macos")
|
|
||||||
files: [
|
|
||||||
"processhandle_mac.mm",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "MimeTypes"
|
|
||||||
prefix: "mimetypes2/"
|
|
||||||
files: [
|
|
||||||
"mimedatabase.cpp",
|
|
||||||
"mimedatabase.h",
|
|
||||||
"mimedatabase_p.h",
|
|
||||||
"mimeglobpattern.cpp",
|
|
||||||
"mimeglobpattern_p.h",
|
|
||||||
"mimemagicrule.cpp",
|
|
||||||
"mimemagicrule_p.h",
|
|
||||||
"mimemagicrulematcher.cpp",
|
|
||||||
"mimemagicrulematcher_p.h",
|
|
||||||
"mimeprovider.cpp",
|
|
||||||
"mimeprovider_p.h",
|
|
||||||
"mimetype.cpp",
|
|
||||||
"mimetype.h",
|
|
||||||
"mimetype_p.h",
|
|
||||||
"mimetypeparser.cpp",
|
|
||||||
"mimetypeparser_p.h",
|
|
||||||
"mimeutils.cpp"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "TouchBar support"
|
|
||||||
prefix: "touchbar/"
|
|
||||||
files: "touchbar.h"
|
|
||||||
Group {
|
|
||||||
name: "TouchBar implementation"
|
|
||||||
condition: qbs.targetOS.contains("macos")
|
|
||||||
files: [
|
|
||||||
"touchbar_appdelegate_mac_p.h",
|
|
||||||
"touchbar_mac_p.h",
|
|
||||||
"touchbar_mac.mm",
|
|
||||||
"touchbar_appdelegate_mac.mm",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
Group {
|
|
||||||
name: "TouchBar stub"
|
|
||||||
condition: !qbs.targetOS.contains("macos")
|
|
||||||
files: "touchbar.cpp"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "Qt"; submodules: ["concurrent", "widgets" ] }
|
|
||||||
Depends { name: "Tasking" }
|
|
||||||
cpp.includePaths: base.concat("mimetypes2")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Export {
|
||||||
|
Depends { name: "Qt"; submodules: ["concurrent", "widgets" ] }
|
||||||
|
Depends { name: "Tasking" }
|
||||||
|
cpp.includePaths: base.concat("mimetypes2")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,126 +1,122 @@
|
|||||||
import qbs 1.0
|
QtcPlugin {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "Android"
|
name: "Android"
|
||||||
|
|
||||||
QtcPlugin {
|
Depends { name: "Qt"; submodules: ["widgets", "xml", "network"] }
|
||||||
Depends { name: "Qt"; submodules: ["widgets", "xml", "network"] }
|
Depends { name: "Core" }
|
||||||
Depends { name: "Core" }
|
Depends { name: "Debugger" }
|
||||||
Depends { name: "Debugger" }
|
Depends { name: "LanguageClient" }
|
||||||
Depends { name: "LanguageClient" }
|
Depends { name: "LanguageServerProtocol" }
|
||||||
Depends { name: "LanguageServerProtocol" }
|
Depends { name: "ProParser" }
|
||||||
Depends { name: "ProParser" }
|
Depends { name: "ProjectExplorer" }
|
||||||
Depends { name: "ProjectExplorer" }
|
Depends { name: "QmlDebug" }
|
||||||
Depends { name: "QmlDebug" }
|
Depends { name: "QtSupport" }
|
||||||
Depends { name: "QtSupport" }
|
Depends { name: "TextEditor" }
|
||||||
Depends { name: "TextEditor" }
|
Depends { name: "Utils" }
|
||||||
Depends { name: "Utils" }
|
|
||||||
|
|
||||||
|
files: [
|
||||||
|
"androidtr.h",
|
||||||
|
"android.qrc",
|
||||||
|
"androidavdmanager.cpp",
|
||||||
|
"androidavdmanager.h",
|
||||||
|
"androidconfigurations.cpp",
|
||||||
|
"androidconfigurations.h",
|
||||||
|
"androidconstants.h",
|
||||||
|
"androidcreatekeystorecertificate.cpp",
|
||||||
|
"androidcreatekeystorecertificate.h",
|
||||||
|
"androidbuildapkstep.cpp",
|
||||||
|
"androidbuildapkstep.h",
|
||||||
|
"androiddeployqtstep.cpp",
|
||||||
|
"androiddeployqtstep.h",
|
||||||
|
"androiddebugsupport.cpp",
|
||||||
|
"androiddebugsupport.h",
|
||||||
|
"androiddevice.cpp",
|
||||||
|
"androiddevice.h",
|
||||||
|
"androiddeviceinfo.cpp",
|
||||||
|
"androiddeviceinfo.h",
|
||||||
|
"androidextralibrarylistmodel.cpp",
|
||||||
|
"androidextralibrarylistmodel.h",
|
||||||
|
"androidglobal.h",
|
||||||
|
"androidmanager.cpp",
|
||||||
|
"androidmanager.h",
|
||||||
|
"androidmanifestdocument.cpp",
|
||||||
|
"androidmanifestdocument.h",
|
||||||
|
"androidmanifesteditor.cpp",
|
||||||
|
"androidmanifesteditor.h",
|
||||||
|
"androidmanifesteditoriconwidget.cpp",
|
||||||
|
"androidmanifesteditoriconwidget.h",
|
||||||
|
"androidmanifesteditoriconcontainerwidget.cpp",
|
||||||
|
"androidmanifesteditoriconcontainerwidget.h",
|
||||||
|
"androidmanifesteditorfactory.cpp",
|
||||||
|
"androidmanifesteditorfactory.h",
|
||||||
|
"androidmanifesteditorwidget.cpp",
|
||||||
|
"androidmanifesteditorwidget.h",
|
||||||
|
"androidpackageinstallationstep.cpp",
|
||||||
|
"androidpackageinstallationstep.h",
|
||||||
|
"androidplugin.cpp",
|
||||||
|
"androidplugin.h",
|
||||||
|
"androidpotentialkit.cpp",
|
||||||
|
"androidpotentialkit.h",
|
||||||
|
"androidqmlpreviewworker.h",
|
||||||
|
"androidqmlpreviewworker.cpp",
|
||||||
|
"androidqmltoolingsupport.cpp",
|
||||||
|
"androidqmltoolingsupport.h",
|
||||||
|
"androidqtversion.cpp",
|
||||||
|
"androidqtversion.h",
|
||||||
|
"androidrunconfiguration.cpp",
|
||||||
|
"androidrunconfiguration.h",
|
||||||
|
"androidruncontrol.cpp",
|
||||||
|
"androidruncontrol.h",
|
||||||
|
"androidrunner.cpp",
|
||||||
|
"androidrunner.h",
|
||||||
|
"androidrunnerworker.cpp",
|
||||||
|
"androidrunnerworker.h",
|
||||||
|
"androidsdkdownloader.cpp",
|
||||||
|
"androidsdkdownloader.h",
|
||||||
|
"androidsdkmanager.cpp",
|
||||||
|
"androidsdkmanager.h",
|
||||||
|
"androidsdkmanagerwidget.cpp",
|
||||||
|
"androidsdkmanagerwidget.h",
|
||||||
|
"androidsdkmodel.cpp",
|
||||||
|
"androidsdkmodel.h",
|
||||||
|
"androidsdkpackage.cpp",
|
||||||
|
"androidsdkpackage.h",
|
||||||
|
"androidsettingswidget.cpp",
|
||||||
|
"androidsettingswidget.h",
|
||||||
|
"androidsignaloperation.cpp",
|
||||||
|
"androidsignaloperation.h",
|
||||||
|
"androidtoolchain.cpp",
|
||||||
|
"androidtoolchain.h",
|
||||||
|
"avddialog.cpp",
|
||||||
|
"avddialog.h",
|
||||||
|
"avdmanageroutputparser.cpp",
|
||||||
|
"avdmanageroutputparser.h",
|
||||||
|
"certificatesmodel.cpp",
|
||||||
|
"certificatesmodel.h",
|
||||||
|
"createandroidmanifestwizard.h",
|
||||||
|
"createandroidmanifestwizard.cpp",
|
||||||
|
"javaeditor.cpp",
|
||||||
|
"javaeditor.h",
|
||||||
|
"javaindenter.cpp",
|
||||||
|
"javaindenter.h",
|
||||||
|
"javalanguageserver.cpp",
|
||||||
|
"javalanguageserver.h",
|
||||||
|
"javaparser.cpp",
|
||||||
|
"javaparser.h",
|
||||||
|
"splashscreencontainerwidget.cpp",
|
||||||
|
"splashscreencontainerwidget.h",
|
||||||
|
"splashscreenwidget.cpp",
|
||||||
|
"splashscreenwidget.h",
|
||||||
|
"sdkmanageroutputparser.cpp",
|
||||||
|
"sdkmanageroutputparser.h"
|
||||||
|
]
|
||||||
|
|
||||||
|
QtcTestFiles {
|
||||||
files: [
|
files: [
|
||||||
"androidtr.h",
|
"android_tst.qrc",
|
||||||
"android.qrc",
|
"androidsdkmanager_test.cpp",
|
||||||
"androidavdmanager.cpp",
|
"androidsdkmanager_test.h",
|
||||||
"androidavdmanager.h",
|
"sdkmanageroutputparser_test.cpp",
|
||||||
"androidconfigurations.cpp",
|
"sdkmanageroutputparser_test.h",
|
||||||
"androidconfigurations.h",
|
|
||||||
"androidconstants.h",
|
|
||||||
"androidcreatekeystorecertificate.cpp",
|
|
||||||
"androidcreatekeystorecertificate.h",
|
|
||||||
"androidbuildapkstep.cpp",
|
|
||||||
"androidbuildapkstep.h",
|
|
||||||
"androiddeployqtstep.cpp",
|
|
||||||
"androiddeployqtstep.h",
|
|
||||||
"androiddebugsupport.cpp",
|
|
||||||
"androiddebugsupport.h",
|
|
||||||
"androiddevice.cpp",
|
|
||||||
"androiddevice.h",
|
|
||||||
"androiddeviceinfo.cpp",
|
|
||||||
"androiddeviceinfo.h",
|
|
||||||
"androidextralibrarylistmodel.cpp",
|
|
||||||
"androidextralibrarylistmodel.h",
|
|
||||||
"androidglobal.h",
|
|
||||||
"androidmanager.cpp",
|
|
||||||
"androidmanager.h",
|
|
||||||
"androidmanifestdocument.cpp",
|
|
||||||
"androidmanifestdocument.h",
|
|
||||||
"androidmanifesteditor.cpp",
|
|
||||||
"androidmanifesteditor.h",
|
|
||||||
"androidmanifesteditoriconwidget.cpp",
|
|
||||||
"androidmanifesteditoriconwidget.h",
|
|
||||||
"androidmanifesteditoriconcontainerwidget.cpp",
|
|
||||||
"androidmanifesteditoriconcontainerwidget.h",
|
|
||||||
"androidmanifesteditorfactory.cpp",
|
|
||||||
"androidmanifesteditorfactory.h",
|
|
||||||
"androidmanifesteditorwidget.cpp",
|
|
||||||
"androidmanifesteditorwidget.h",
|
|
||||||
"androidpackageinstallationstep.cpp",
|
|
||||||
"androidpackageinstallationstep.h",
|
|
||||||
"androidplugin.cpp",
|
|
||||||
"androidplugin.h",
|
|
||||||
"androidpotentialkit.cpp",
|
|
||||||
"androidpotentialkit.h",
|
|
||||||
"androidqmlpreviewworker.h",
|
|
||||||
"androidqmlpreviewworker.cpp",
|
|
||||||
"androidqmltoolingsupport.cpp",
|
|
||||||
"androidqmltoolingsupport.h",
|
|
||||||
"androidqtversion.cpp",
|
|
||||||
"androidqtversion.h",
|
|
||||||
"androidrunconfiguration.cpp",
|
|
||||||
"androidrunconfiguration.h",
|
|
||||||
"androidruncontrol.cpp",
|
|
||||||
"androidruncontrol.h",
|
|
||||||
"androidrunner.cpp",
|
|
||||||
"androidrunner.h",
|
|
||||||
"androidrunnerworker.cpp",
|
|
||||||
"androidrunnerworker.h",
|
|
||||||
"androidsdkdownloader.cpp",
|
|
||||||
"androidsdkdownloader.h",
|
|
||||||
"androidsdkmanager.cpp",
|
|
||||||
"androidsdkmanager.h",
|
|
||||||
"androidsdkmanagerwidget.cpp",
|
|
||||||
"androidsdkmanagerwidget.h",
|
|
||||||
"androidsdkmodel.cpp",
|
|
||||||
"androidsdkmodel.h",
|
|
||||||
"androidsdkpackage.cpp",
|
|
||||||
"androidsdkpackage.h",
|
|
||||||
"androidsettingswidget.cpp",
|
|
||||||
"androidsettingswidget.h",
|
|
||||||
"androidsignaloperation.cpp",
|
|
||||||
"androidsignaloperation.h",
|
|
||||||
"androidtoolchain.cpp",
|
|
||||||
"androidtoolchain.h",
|
|
||||||
"avddialog.cpp",
|
|
||||||
"avddialog.h",
|
|
||||||
"avdmanageroutputparser.cpp",
|
|
||||||
"avdmanageroutputparser.h",
|
|
||||||
"certificatesmodel.cpp",
|
|
||||||
"certificatesmodel.h",
|
|
||||||
"createandroidmanifestwizard.h",
|
|
||||||
"createandroidmanifestwizard.cpp",
|
|
||||||
"javaeditor.cpp",
|
|
||||||
"javaeditor.h",
|
|
||||||
"javaindenter.cpp",
|
|
||||||
"javaindenter.h",
|
|
||||||
"javalanguageserver.cpp",
|
|
||||||
"javalanguageserver.h",
|
|
||||||
"javaparser.cpp",
|
|
||||||
"javaparser.h",
|
|
||||||
"splashscreencontainerwidget.cpp",
|
|
||||||
"splashscreencontainerwidget.h",
|
|
||||||
"splashscreenwidget.cpp",
|
|
||||||
"splashscreenwidget.h",
|
|
||||||
"sdkmanageroutputparser.cpp",
|
|
||||||
"sdkmanageroutputparser.h"
|
|
||||||
]
|
]
|
||||||
|
|
||||||
QtcTestFiles {
|
|
||||||
files: [
|
|
||||||
"android_tst.qrc",
|
|
||||||
"androidsdkmanager_test.cpp",
|
|
||||||
"androidsdkmanager_test.h",
|
|
||||||
"sdkmanageroutputparser_test.cpp",
|
|
||||||
"sdkmanageroutputparser_test.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,383 +1,379 @@
|
|||||||
import qbs 1.0
|
|
||||||
import qbs.FileInfo
|
import qbs.FileInfo
|
||||||
import qbs.Utilities
|
import qbs.Utilities
|
||||||
|
|
||||||
Project {
|
QtcPlugin {
|
||||||
name: "Core"
|
name: "Core"
|
||||||
|
Depends {
|
||||||
|
name: "Qt"
|
||||||
|
submodules: ["widgets", "xml", "network", "qml", "sql", "printsupport"]
|
||||||
|
}
|
||||||
|
|
||||||
QtcPlugin {
|
Depends {
|
||||||
Depends {
|
name: "Qt.gui-private"
|
||||||
name: "Qt"
|
condition: qbs.targetOS.contains("windows")
|
||||||
submodules: ["widgets", "xml", "network", "qml", "sql", "printsupport"]
|
}
|
||||||
}
|
|
||||||
|
|
||||||
Depends {
|
Depends { name: "Utils" }
|
||||||
name: "Qt.gui-private"
|
Depends { name: "Aggregation" }
|
||||||
condition: qbs.targetOS.contains("windows")
|
Depends { name: "TerminalLib" }
|
||||||
}
|
|
||||||
|
|
||||||
Depends { name: "Utils" }
|
cpp.dynamicLibraries: {
|
||||||
|
if (qbs.targetOS.contains("windows"))
|
||||||
|
return ["ole32", "user32"]
|
||||||
|
}
|
||||||
|
|
||||||
|
cpp.frameworks: qbs.targetOS.contains("macos") ? ["AppKit"] : undefined
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "General"
|
||||||
|
files: [
|
||||||
|
"actionsfilter.cpp",
|
||||||
|
"actionsfilter.h",
|
||||||
|
"basefilewizard.cpp",
|
||||||
|
"basefilewizard.h",
|
||||||
|
"basefilewizardfactory.cpp",
|
||||||
|
"basefilewizardfactory.h",
|
||||||
|
"core.qrc",
|
||||||
|
"core_global.h",
|
||||||
|
"coreconstants.h",
|
||||||
|
"coreicons.cpp",
|
||||||
|
"coreicons.h",
|
||||||
|
"corejsextensions.cpp",
|
||||||
|
"corejsextensions.h",
|
||||||
|
"coreplugin.cpp",
|
||||||
|
"coreplugin.h",
|
||||||
|
"coreplugintr.h",
|
||||||
|
"designmode.cpp",
|
||||||
|
"designmode.h",
|
||||||
|
"diffservice.cpp",
|
||||||
|
"diffservice.h",
|
||||||
|
"documentmanager.cpp",
|
||||||
|
"documentmanager.h",
|
||||||
|
"editmode.cpp",
|
||||||
|
"editmode.h",
|
||||||
|
"editortoolbar.cpp",
|
||||||
|
"editortoolbar.h",
|
||||||
|
"externaltool.cpp",
|
||||||
|
"externaltool.h",
|
||||||
|
"externaltoolmanager.cpp",
|
||||||
|
"externaltoolmanager.h",
|
||||||
|
"fancyactionbar.cpp",
|
||||||
|
"fancyactionbar.h",
|
||||||
|
"fancyactionbar.qrc",
|
||||||
|
"fancytabwidget.cpp",
|
||||||
|
"fancytabwidget.h",
|
||||||
|
"featureprovider.cpp",
|
||||||
|
"featureprovider.h",
|
||||||
|
"fileutils.cpp",
|
||||||
|
"fileutils.h",
|
||||||
|
"findplaceholder.cpp",
|
||||||
|
"findplaceholder.h",
|
||||||
|
"foldernavigationwidget.cpp",
|
||||||
|
"foldernavigationwidget.h",
|
||||||
|
"generalsettings.cpp",
|
||||||
|
"generalsettings.h",
|
||||||
|
"generatedfile.cpp",
|
||||||
|
"generatedfile.h",
|
||||||
|
"helpitem.cpp",
|
||||||
|
"helpitem.h",
|
||||||
|
"helpmanager.cpp",
|
||||||
|
"helpmanager.h",
|
||||||
|
"helpmanager_implementation.h",
|
||||||
|
"icontext.cpp",
|
||||||
|
"icontext.h",
|
||||||
|
"icore.cpp",
|
||||||
|
"icore.h",
|
||||||
|
"idocument.cpp",
|
||||||
|
"idocument.h",
|
||||||
|
"idocumentfactory.cpp",
|
||||||
|
"idocumentfactory.h",
|
||||||
|
"ifilewizardextension.h",
|
||||||
|
"imode.cpp",
|
||||||
|
"imode.h",
|
||||||
|
"inavigationwidgetfactory.cpp",
|
||||||
|
"inavigationwidgetfactory.h",
|
||||||
|
"ioutputpane.cpp",
|
||||||
|
"ioutputpane.h",
|
||||||
|
"iversioncontrol.cpp",
|
||||||
|
"iversioncontrol.h",
|
||||||
|
"iwelcomepage.cpp",
|
||||||
|
"iwelcomepage.h",
|
||||||
|
"iwizardfactory.cpp",
|
||||||
|
"iwizardfactory.h",
|
||||||
|
"jsexpander.cpp",
|
||||||
|
"jsexpander.h",
|
||||||
|
"loggingmanager.cpp",
|
||||||
|
"loggingmanager.h",
|
||||||
|
"loggingviewer.cpp",
|
||||||
|
"loggingviewer.h",
|
||||||
|
"mainwindow.cpp",
|
||||||
|
"mainwindow.h",
|
||||||
|
"manhattanstyle.cpp",
|
||||||
|
"manhattanstyle.h",
|
||||||
|
"messagebox.cpp",
|
||||||
|
"messagebox.h",
|
||||||
|
"messagemanager.cpp",
|
||||||
|
"messagemanager.h",
|
||||||
|
"messageoutputwindow.cpp",
|
||||||
|
"messageoutputwindow.h",
|
||||||
|
"mimetypemagicdialog.cpp",
|
||||||
|
"mimetypemagicdialog.h",
|
||||||
|
"mimetypesettings.cpp",
|
||||||
|
"mimetypesettings.h",
|
||||||
|
"minisplitter.cpp",
|
||||||
|
"minisplitter.h",
|
||||||
|
"modemanager.cpp",
|
||||||
|
"modemanager.h",
|
||||||
|
"navigationsubwidget.cpp",
|
||||||
|
"navigationsubwidget.h",
|
||||||
|
"navigationwidget.cpp",
|
||||||
|
"navigationwidget.h",
|
||||||
|
"opendocumentstreeview.cpp",
|
||||||
|
"opendocumentstreeview.h",
|
||||||
|
"outputpane.cpp",
|
||||||
|
"outputpane.h",
|
||||||
|
"outputpanemanager.cpp",
|
||||||
|
"outputpanemanager.h",
|
||||||
|
"outputwindow.cpp",
|
||||||
|
"outputwindow.h",
|
||||||
|
"patchtool.cpp",
|
||||||
|
"patchtool.h",
|
||||||
|
"plugindialog.cpp",
|
||||||
|
"plugindialog.h",
|
||||||
|
"plugininstallwizard.cpp",
|
||||||
|
"plugininstallwizard.h",
|
||||||
|
"rightpane.cpp",
|
||||||
|
"rightpane.h",
|
||||||
|
"session.cpp",
|
||||||
|
"session.h",
|
||||||
|
"sessiondialog.cpp",
|
||||||
|
"sessiondialog.h",
|
||||||
|
"sessionmodel.cpp",
|
||||||
|
"sessionmodel.h",
|
||||||
|
"sessionview.cpp",
|
||||||
|
"sessionview.h",
|
||||||
|
"settingsdatabase.cpp",
|
||||||
|
"settingsdatabase.h",
|
||||||
|
"sidebar.cpp",
|
||||||
|
"sidebar.h",
|
||||||
|
"sidebarwidget.cpp",
|
||||||
|
"sidebarwidget.h",
|
||||||
|
"statusbarmanager.cpp",
|
||||||
|
"statusbarmanager.h",
|
||||||
|
"systemsettings.cpp",
|
||||||
|
"systemsettings.h",
|
||||||
|
"textdocument.cpp",
|
||||||
|
"textdocument.h",
|
||||||
|
"themechooser.cpp",
|
||||||
|
"themechooser.h",
|
||||||
|
"vcsmanager.cpp",
|
||||||
|
"vcsmanager.h",
|
||||||
|
"versiondialog.cpp",
|
||||||
|
"versiondialog.h",
|
||||||
|
"welcomepagehelper.cpp",
|
||||||
|
"welcomepagehelper.h",
|
||||||
|
"windowsupport.cpp",
|
||||||
|
"windowsupport.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "studiofonts"
|
||||||
|
prefix: "../../share/3rdparty/studiofonts/"
|
||||||
|
files: "studiofonts.qrc"
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Action Manager"
|
||||||
|
prefix: "actionmanager/"
|
||||||
|
files: [
|
||||||
|
"actioncontainer.cpp", "actioncontainer.h", "actioncontainer_p.h",
|
||||||
|
"actionmanager.cpp", "actionmanager.h", "actionmanager_p.h",
|
||||||
|
"command.cpp", "command.h", "command_p.h",
|
||||||
|
"commandbutton.cpp", "commandbutton.h",
|
||||||
|
"commandmappings.cpp", "commandmappings.h",
|
||||||
|
"commandsfile.cpp", "commandsfile.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Dialogs"
|
||||||
|
prefix: "dialogs/"
|
||||||
|
files: [
|
||||||
|
"addtovcsdialog.cpp", "addtovcsdialog.h",
|
||||||
|
"codecselector.cpp", "codecselector.h",
|
||||||
|
"externaltoolconfig.cpp", "externaltoolconfig.h",
|
||||||
|
"filepropertiesdialog.cpp", "filepropertiesdialog.h",
|
||||||
|
"ioptionspage.cpp", "ioptionspage.h",
|
||||||
|
"newdialog.cpp", "newdialog.h",
|
||||||
|
"newdialogwidget.cpp", "newdialogwidget.h",
|
||||||
|
"openwithdialog.cpp", "openwithdialog.h",
|
||||||
|
"promptoverwritedialog.cpp", "promptoverwritedialog.h",
|
||||||
|
"readonlyfilesdialog.cpp", "readonlyfilesdialog.h",
|
||||||
|
"restartdialog.cpp", "restartdialog.h",
|
||||||
|
"saveitemsdialog.cpp", "saveitemsdialog.h",
|
||||||
|
"settingsdialog.cpp", "settingsdialog.h",
|
||||||
|
"shortcutsettings.cpp", "shortcutsettings.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Editor Manager"
|
||||||
|
prefix: "editormanager/"
|
||||||
|
files: [
|
||||||
|
"documentmodel.cpp", "documentmodel.h", "documentmodel_p.h",
|
||||||
|
"editorarea.cpp", "editorarea.h",
|
||||||
|
"editormanager.cpp", "editormanager.h", "editormanager_p.h",
|
||||||
|
"editorview.cpp", "editorview.h",
|
||||||
|
"editorwindow.cpp", "editorwindow.h",
|
||||||
|
"ieditor.cpp", "ieditor.h",
|
||||||
|
"ieditorfactory.cpp", "ieditorfactory.h", "ieditorfactory_p.h",
|
||||||
|
"openeditorsview.cpp", "openeditorsview.h",
|
||||||
|
"openeditorswindow.cpp", "openeditorswindow.h",
|
||||||
|
"systemeditor.cpp", "systemeditor.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Progress Manager"
|
||||||
|
prefix: "progressmanager/"
|
||||||
|
files: [
|
||||||
|
"futureprogress.cpp", "futureprogress.h",
|
||||||
|
"processprogress.cpp", "processprogress.h",
|
||||||
|
"progressbar.cpp", "progressbar.h",
|
||||||
|
"progressmanager.cpp", "progressmanager.h", "progressmanager_p.h",
|
||||||
|
"progressview.cpp", "progressview.h",
|
||||||
|
"taskprogress.cpp", "taskprogress.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "ProgressManager_win"
|
||||||
|
condition: qbs.targetOS.contains("windows")
|
||||||
|
files: [
|
||||||
|
"progressmanager/progressmanager_win.cpp",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "ProgressManager_mac"
|
||||||
|
condition: qbs.targetOS.contains("macos")
|
||||||
|
files: [
|
||||||
|
"progressmanager/progressmanager_mac.mm",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "ProgressManager_x11"
|
||||||
|
condition: qbs.targetOS.contains("unix") && !qbs.targetOS.contains("macos")
|
||||||
|
files: [
|
||||||
|
"progressmanager/progressmanager_x11.cpp",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
QtcTestFiles {
|
||||||
|
files: [
|
||||||
|
"testdatadir.cpp",
|
||||||
|
"testdatadir.h",
|
||||||
|
"locator/locatorfiltertest.cpp",
|
||||||
|
"locator/locatorfiltertest.h",
|
||||||
|
"locator/locator_test.cpp"
|
||||||
|
]
|
||||||
|
|
||||||
|
cpp.defines: outer.concat(['SRCDIR="' + path + '"'])
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Find"
|
||||||
|
prefix: "find/"
|
||||||
|
files: [
|
||||||
|
"basetextfind.cpp",
|
||||||
|
"basetextfind.h",
|
||||||
|
"currentdocumentfind.cpp",
|
||||||
|
"currentdocumentfind.h",
|
||||||
|
"find.qrc",
|
||||||
|
"findplugin.cpp",
|
||||||
|
"findplugin.h",
|
||||||
|
"findtoolbar.cpp",
|
||||||
|
"findtoolbar.h",
|
||||||
|
"findtoolwindow.cpp",
|
||||||
|
"findtoolwindow.h",
|
||||||
|
"highlightscrollbarcontroller.cpp",
|
||||||
|
"highlightscrollbarcontroller.h",
|
||||||
|
"ifindfilter.cpp",
|
||||||
|
"ifindfilter.h",
|
||||||
|
"ifindsupport.cpp",
|
||||||
|
"ifindsupport.h",
|
||||||
|
"itemviewfind.cpp",
|
||||||
|
"itemviewfind.h",
|
||||||
|
"optionspopup.cpp",
|
||||||
|
"optionspopup.h",
|
||||||
|
"searchresulttreeitemdelegate.cpp",
|
||||||
|
"searchresulttreeitemdelegate.h",
|
||||||
|
"searchresulttreeitemroles.h",
|
||||||
|
"searchresulttreeitems.cpp",
|
||||||
|
"searchresulttreeitems.h",
|
||||||
|
"searchresulttreemodel.cpp",
|
||||||
|
"searchresulttreemodel.h",
|
||||||
|
"searchresulttreeview.cpp",
|
||||||
|
"searchresulttreeview.h",
|
||||||
|
"searchresultwidget.cpp",
|
||||||
|
"searchresultwidget.h",
|
||||||
|
"searchresultwindow.cpp",
|
||||||
|
"searchresultwindow.h",
|
||||||
|
"textfindconstants.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Locator"
|
||||||
|
prefix: "locator/"
|
||||||
|
files: [
|
||||||
|
"commandlocator.cpp",
|
||||||
|
"commandlocator.h",
|
||||||
|
"directoryfilter.cpp",
|
||||||
|
"directoryfilter.h",
|
||||||
|
"executefilter.cpp",
|
||||||
|
"executefilter.h",
|
||||||
|
"externaltoolsfilter.cpp",
|
||||||
|
"externaltoolsfilter.h",
|
||||||
|
"filesystemfilter.cpp",
|
||||||
|
"filesystemfilter.h",
|
||||||
|
"ilocatorfilter.cpp",
|
||||||
|
"ilocatorfilter.h",
|
||||||
|
"javascriptfilter.cpp",
|
||||||
|
"javascriptfilter.h",
|
||||||
|
"locatorconstants.h",
|
||||||
|
"locatorfiltersfilter.cpp",
|
||||||
|
"locatorfiltersfilter.h",
|
||||||
|
"locatormanager.cpp",
|
||||||
|
"locatormanager.h",
|
||||||
|
"locator.cpp",
|
||||||
|
"locator.h",
|
||||||
|
"locatorsettingspage.cpp",
|
||||||
|
"locatorsettingspage.h",
|
||||||
|
"locatorwidget.cpp",
|
||||||
|
"locatorwidget.h",
|
||||||
|
"opendocumentsfilter.cpp",
|
||||||
|
"opendocumentsfilter.h",
|
||||||
|
"spotlightlocatorfilter.h",
|
||||||
|
"spotlightlocatorfilter.cpp",
|
||||||
|
"urllocatorfilter.cpp",
|
||||||
|
"urllocatorfilter.h"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Terminal"
|
||||||
|
prefix: "terminal/"
|
||||||
|
files: [
|
||||||
|
"searchableterminal.cpp",
|
||||||
|
"searchableterminal.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Export {
|
||||||
Depends { name: "Aggregation" }
|
Depends { name: "Aggregation" }
|
||||||
Depends { name: "TerminalLib" }
|
Depends { name: "Utils" }
|
||||||
|
|
||||||
cpp.dynamicLibraries: {
|
|
||||||
if (qbs.targetOS.contains("windows"))
|
|
||||||
return ["ole32", "user32"]
|
|
||||||
}
|
|
||||||
|
|
||||||
cpp.frameworks: qbs.targetOS.contains("macos") ? ["AppKit"] : undefined
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "General"
|
|
||||||
files: [
|
|
||||||
"actionsfilter.cpp",
|
|
||||||
"actionsfilter.h",
|
|
||||||
"basefilewizard.cpp",
|
|
||||||
"basefilewizard.h",
|
|
||||||
"basefilewizardfactory.cpp",
|
|
||||||
"basefilewizardfactory.h",
|
|
||||||
"core.qrc",
|
|
||||||
"core_global.h",
|
|
||||||
"coreconstants.h",
|
|
||||||
"coreicons.cpp",
|
|
||||||
"coreicons.h",
|
|
||||||
"corejsextensions.cpp",
|
|
||||||
"corejsextensions.h",
|
|
||||||
"coreplugin.cpp",
|
|
||||||
"coreplugin.h",
|
|
||||||
"coreplugintr.h",
|
|
||||||
"designmode.cpp",
|
|
||||||
"designmode.h",
|
|
||||||
"diffservice.cpp",
|
|
||||||
"diffservice.h",
|
|
||||||
"documentmanager.cpp",
|
|
||||||
"documentmanager.h",
|
|
||||||
"editmode.cpp",
|
|
||||||
"editmode.h",
|
|
||||||
"editortoolbar.cpp",
|
|
||||||
"editortoolbar.h",
|
|
||||||
"externaltool.cpp",
|
|
||||||
"externaltool.h",
|
|
||||||
"externaltoolmanager.cpp",
|
|
||||||
"externaltoolmanager.h",
|
|
||||||
"fancyactionbar.cpp",
|
|
||||||
"fancyactionbar.h",
|
|
||||||
"fancyactionbar.qrc",
|
|
||||||
"fancytabwidget.cpp",
|
|
||||||
"fancytabwidget.h",
|
|
||||||
"featureprovider.cpp",
|
|
||||||
"featureprovider.h",
|
|
||||||
"fileutils.cpp",
|
|
||||||
"fileutils.h",
|
|
||||||
"findplaceholder.cpp",
|
|
||||||
"findplaceholder.h",
|
|
||||||
"foldernavigationwidget.cpp",
|
|
||||||
"foldernavigationwidget.h",
|
|
||||||
"generalsettings.cpp",
|
|
||||||
"generalsettings.h",
|
|
||||||
"generatedfile.cpp",
|
|
||||||
"generatedfile.h",
|
|
||||||
"helpitem.cpp",
|
|
||||||
"helpitem.h",
|
|
||||||
"helpmanager.cpp",
|
|
||||||
"helpmanager.h",
|
|
||||||
"helpmanager_implementation.h",
|
|
||||||
"icontext.cpp",
|
|
||||||
"icontext.h",
|
|
||||||
"icore.cpp",
|
|
||||||
"icore.h",
|
|
||||||
"idocument.cpp",
|
|
||||||
"idocument.h",
|
|
||||||
"idocumentfactory.cpp",
|
|
||||||
"idocumentfactory.h",
|
|
||||||
"ifilewizardextension.h",
|
|
||||||
"imode.cpp",
|
|
||||||
"imode.h",
|
|
||||||
"inavigationwidgetfactory.cpp",
|
|
||||||
"inavigationwidgetfactory.h",
|
|
||||||
"ioutputpane.cpp",
|
|
||||||
"ioutputpane.h",
|
|
||||||
"iversioncontrol.cpp",
|
|
||||||
"iversioncontrol.h",
|
|
||||||
"iwelcomepage.cpp",
|
|
||||||
"iwelcomepage.h",
|
|
||||||
"iwizardfactory.cpp",
|
|
||||||
"iwizardfactory.h",
|
|
||||||
"jsexpander.cpp",
|
|
||||||
"jsexpander.h",
|
|
||||||
"loggingmanager.cpp",
|
|
||||||
"loggingmanager.h",
|
|
||||||
"loggingviewer.cpp",
|
|
||||||
"loggingviewer.h",
|
|
||||||
"mainwindow.cpp",
|
|
||||||
"mainwindow.h",
|
|
||||||
"manhattanstyle.cpp",
|
|
||||||
"manhattanstyle.h",
|
|
||||||
"messagebox.cpp",
|
|
||||||
"messagebox.h",
|
|
||||||
"messagemanager.cpp",
|
|
||||||
"messagemanager.h",
|
|
||||||
"messageoutputwindow.cpp",
|
|
||||||
"messageoutputwindow.h",
|
|
||||||
"mimetypemagicdialog.cpp",
|
|
||||||
"mimetypemagicdialog.h",
|
|
||||||
"mimetypesettings.cpp",
|
|
||||||
"mimetypesettings.h",
|
|
||||||
"minisplitter.cpp",
|
|
||||||
"minisplitter.h",
|
|
||||||
"modemanager.cpp",
|
|
||||||
"modemanager.h",
|
|
||||||
"navigationsubwidget.cpp",
|
|
||||||
"navigationsubwidget.h",
|
|
||||||
"navigationwidget.cpp",
|
|
||||||
"navigationwidget.h",
|
|
||||||
"opendocumentstreeview.cpp",
|
|
||||||
"opendocumentstreeview.h",
|
|
||||||
"outputpane.cpp",
|
|
||||||
"outputpane.h",
|
|
||||||
"outputpanemanager.cpp",
|
|
||||||
"outputpanemanager.h",
|
|
||||||
"outputwindow.cpp",
|
|
||||||
"outputwindow.h",
|
|
||||||
"patchtool.cpp",
|
|
||||||
"patchtool.h",
|
|
||||||
"plugindialog.cpp",
|
|
||||||
"plugindialog.h",
|
|
||||||
"plugininstallwizard.cpp",
|
|
||||||
"plugininstallwizard.h",
|
|
||||||
"rightpane.cpp",
|
|
||||||
"rightpane.h",
|
|
||||||
"session.cpp",
|
|
||||||
"session.h",
|
|
||||||
"sessiondialog.cpp",
|
|
||||||
"sessiondialog.h",
|
|
||||||
"sessionmodel.cpp",
|
|
||||||
"sessionmodel.h",
|
|
||||||
"sessionview.cpp",
|
|
||||||
"sessionview.h",
|
|
||||||
"settingsdatabase.cpp",
|
|
||||||
"settingsdatabase.h",
|
|
||||||
"sidebar.cpp",
|
|
||||||
"sidebar.h",
|
|
||||||
"sidebarwidget.cpp",
|
|
||||||
"sidebarwidget.h",
|
|
||||||
"statusbarmanager.cpp",
|
|
||||||
"statusbarmanager.h",
|
|
||||||
"systemsettings.cpp",
|
|
||||||
"systemsettings.h",
|
|
||||||
"textdocument.cpp",
|
|
||||||
"textdocument.h",
|
|
||||||
"themechooser.cpp",
|
|
||||||
"themechooser.h",
|
|
||||||
"vcsmanager.cpp",
|
|
||||||
"vcsmanager.h",
|
|
||||||
"versiondialog.cpp",
|
|
||||||
"versiondialog.h",
|
|
||||||
"welcomepagehelper.cpp",
|
|
||||||
"welcomepagehelper.h",
|
|
||||||
"windowsupport.cpp",
|
|
||||||
"windowsupport.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "studiofonts"
|
|
||||||
prefix: "../../share/3rdparty/studiofonts/"
|
|
||||||
files: "studiofonts.qrc"
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Action Manager"
|
|
||||||
prefix: "actionmanager/"
|
|
||||||
files: [
|
|
||||||
"actioncontainer.cpp", "actioncontainer.h", "actioncontainer_p.h",
|
|
||||||
"actionmanager.cpp", "actionmanager.h", "actionmanager_p.h",
|
|
||||||
"command.cpp", "command.h", "command_p.h",
|
|
||||||
"commandbutton.cpp", "commandbutton.h",
|
|
||||||
"commandmappings.cpp", "commandmappings.h",
|
|
||||||
"commandsfile.cpp", "commandsfile.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Dialogs"
|
|
||||||
prefix: "dialogs/"
|
|
||||||
files: [
|
|
||||||
"addtovcsdialog.cpp", "addtovcsdialog.h",
|
|
||||||
"codecselector.cpp", "codecselector.h",
|
|
||||||
"externaltoolconfig.cpp", "externaltoolconfig.h",
|
|
||||||
"filepropertiesdialog.cpp", "filepropertiesdialog.h",
|
|
||||||
"ioptionspage.cpp", "ioptionspage.h",
|
|
||||||
"newdialog.cpp", "newdialog.h",
|
|
||||||
"newdialogwidget.cpp", "newdialogwidget.h",
|
|
||||||
"openwithdialog.cpp", "openwithdialog.h",
|
|
||||||
"promptoverwritedialog.cpp", "promptoverwritedialog.h",
|
|
||||||
"readonlyfilesdialog.cpp", "readonlyfilesdialog.h",
|
|
||||||
"restartdialog.cpp", "restartdialog.h",
|
|
||||||
"saveitemsdialog.cpp", "saveitemsdialog.h",
|
|
||||||
"settingsdialog.cpp", "settingsdialog.h",
|
|
||||||
"shortcutsettings.cpp", "shortcutsettings.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Editor Manager"
|
|
||||||
prefix: "editormanager/"
|
|
||||||
files: [
|
|
||||||
"documentmodel.cpp", "documentmodel.h", "documentmodel_p.h",
|
|
||||||
"editorarea.cpp", "editorarea.h",
|
|
||||||
"editormanager.cpp", "editormanager.h", "editormanager_p.h",
|
|
||||||
"editorview.cpp", "editorview.h",
|
|
||||||
"editorwindow.cpp", "editorwindow.h",
|
|
||||||
"ieditor.cpp", "ieditor.h",
|
|
||||||
"ieditorfactory.cpp", "ieditorfactory.h", "ieditorfactory_p.h",
|
|
||||||
"openeditorsview.cpp", "openeditorsview.h",
|
|
||||||
"openeditorswindow.cpp", "openeditorswindow.h",
|
|
||||||
"systemeditor.cpp", "systemeditor.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Progress Manager"
|
|
||||||
prefix: "progressmanager/"
|
|
||||||
files: [
|
|
||||||
"futureprogress.cpp", "futureprogress.h",
|
|
||||||
"processprogress.cpp", "processprogress.h",
|
|
||||||
"progressbar.cpp", "progressbar.h",
|
|
||||||
"progressmanager.cpp", "progressmanager.h", "progressmanager_p.h",
|
|
||||||
"progressview.cpp", "progressview.h",
|
|
||||||
"taskprogress.cpp", "taskprogress.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "ProgressManager_win"
|
|
||||||
condition: qbs.targetOS.contains("windows")
|
|
||||||
files: [
|
|
||||||
"progressmanager/progressmanager_win.cpp",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "ProgressManager_mac"
|
|
||||||
condition: qbs.targetOS.contains("macos")
|
|
||||||
files: [
|
|
||||||
"progressmanager/progressmanager_mac.mm",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "ProgressManager_x11"
|
|
||||||
condition: qbs.targetOS.contains("unix") && !qbs.targetOS.contains("macos")
|
|
||||||
files: [
|
|
||||||
"progressmanager/progressmanager_x11.cpp",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
QtcTestFiles {
|
|
||||||
files: [
|
|
||||||
"testdatadir.cpp",
|
|
||||||
"testdatadir.h",
|
|
||||||
"locator/locatorfiltertest.cpp",
|
|
||||||
"locator/locatorfiltertest.h",
|
|
||||||
"locator/locator_test.cpp"
|
|
||||||
]
|
|
||||||
|
|
||||||
cpp.defines: outer.concat(['SRCDIR="' + path + '"'])
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Find"
|
|
||||||
prefix: "find/"
|
|
||||||
files: [
|
|
||||||
"basetextfind.cpp",
|
|
||||||
"basetextfind.h",
|
|
||||||
"currentdocumentfind.cpp",
|
|
||||||
"currentdocumentfind.h",
|
|
||||||
"find.qrc",
|
|
||||||
"findplugin.cpp",
|
|
||||||
"findplugin.h",
|
|
||||||
"findtoolbar.cpp",
|
|
||||||
"findtoolbar.h",
|
|
||||||
"findtoolwindow.cpp",
|
|
||||||
"findtoolwindow.h",
|
|
||||||
"highlightscrollbarcontroller.cpp",
|
|
||||||
"highlightscrollbarcontroller.h",
|
|
||||||
"ifindfilter.cpp",
|
|
||||||
"ifindfilter.h",
|
|
||||||
"ifindsupport.cpp",
|
|
||||||
"ifindsupport.h",
|
|
||||||
"itemviewfind.cpp",
|
|
||||||
"itemviewfind.h",
|
|
||||||
"optionspopup.cpp",
|
|
||||||
"optionspopup.h",
|
|
||||||
"searchresulttreeitemdelegate.cpp",
|
|
||||||
"searchresulttreeitemdelegate.h",
|
|
||||||
"searchresulttreeitemroles.h",
|
|
||||||
"searchresulttreeitems.cpp",
|
|
||||||
"searchresulttreeitems.h",
|
|
||||||
"searchresulttreemodel.cpp",
|
|
||||||
"searchresulttreemodel.h",
|
|
||||||
"searchresulttreeview.cpp",
|
|
||||||
"searchresulttreeview.h",
|
|
||||||
"searchresultwidget.cpp",
|
|
||||||
"searchresultwidget.h",
|
|
||||||
"searchresultwindow.cpp",
|
|
||||||
"searchresultwindow.h",
|
|
||||||
"textfindconstants.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Locator"
|
|
||||||
prefix: "locator/"
|
|
||||||
files: [
|
|
||||||
"commandlocator.cpp",
|
|
||||||
"commandlocator.h",
|
|
||||||
"directoryfilter.cpp",
|
|
||||||
"directoryfilter.h",
|
|
||||||
"executefilter.cpp",
|
|
||||||
"executefilter.h",
|
|
||||||
"externaltoolsfilter.cpp",
|
|
||||||
"externaltoolsfilter.h",
|
|
||||||
"filesystemfilter.cpp",
|
|
||||||
"filesystemfilter.h",
|
|
||||||
"ilocatorfilter.cpp",
|
|
||||||
"ilocatorfilter.h",
|
|
||||||
"javascriptfilter.cpp",
|
|
||||||
"javascriptfilter.h",
|
|
||||||
"locatorconstants.h",
|
|
||||||
"locatorfiltersfilter.cpp",
|
|
||||||
"locatorfiltersfilter.h",
|
|
||||||
"locatormanager.cpp",
|
|
||||||
"locatormanager.h",
|
|
||||||
"locator.cpp",
|
|
||||||
"locator.h",
|
|
||||||
"locatorsettingspage.cpp",
|
|
||||||
"locatorsettingspage.h",
|
|
||||||
"locatorwidget.cpp",
|
|
||||||
"locatorwidget.h",
|
|
||||||
"opendocumentsfilter.cpp",
|
|
||||||
"opendocumentsfilter.h",
|
|
||||||
"spotlightlocatorfilter.h",
|
|
||||||
"spotlightlocatorfilter.cpp",
|
|
||||||
"urllocatorfilter.cpp",
|
|
||||||
"urllocatorfilter.h"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Terminal"
|
|
||||||
prefix: "terminal/"
|
|
||||||
files: [
|
|
||||||
"searchableterminal.cpp",
|
|
||||||
"searchableterminal.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "Aggregation" }
|
|
||||||
Depends { name: "Utils" }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,270 +1,261 @@
|
|||||||
import qbs 1.0
|
QtcPlugin {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "Debugger"
|
name: "Debugger"
|
||||||
|
|
||||||
QtcPlugin {
|
Depends { name: "Qt"; submodules: ["network", "widgets"] }
|
||||||
Depends { name: "Qt"; submodules: ["widgets", "network"] }
|
|
||||||
Depends { name: "Aggregation" }
|
Depends { name: "Aggregation" }
|
||||||
|
Depends { name: "CPlusPlus" }
|
||||||
|
Depends { name: "LanguageUtils" }
|
||||||
|
Depends { name: "QmlDebug" }
|
||||||
|
Depends { name: "QmlJS" }
|
||||||
|
Depends { name: "Utils" }
|
||||||
|
|
||||||
|
Depends { name: "Core" }
|
||||||
|
Depends { name: "CppEditor" }
|
||||||
|
Depends { name: "ProjectExplorer" }
|
||||||
|
Depends { name: "QtSupport" }
|
||||||
|
Depends { name: "TextEditor" }
|
||||||
|
|
||||||
|
pluginRecommends: ["BinEditor"]
|
||||||
|
pluginTestDepends: ["QmakeProjectManager"]
|
||||||
|
|
||||||
|
cpp.includePaths: base.concat([project.sharedSourcesDir + "/registryaccess"])
|
||||||
|
cpp.enableExceptions: true
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "General"
|
||||||
|
files: [
|
||||||
|
"breakhandler.cpp", "breakhandler.h",
|
||||||
|
"breakpoint.cpp", "breakpoint.h",
|
||||||
|
"commonoptionspage.cpp", "commonoptionspage.h",
|
||||||
|
"debugger.qrc",
|
||||||
|
"debugger_global.h", "debuggertr.h",
|
||||||
|
"debuggeractions.cpp", "debuggeractions.h",
|
||||||
|
"debuggerconstants.h",
|
||||||
|
"debuggericons.h", "debuggericons.cpp",
|
||||||
|
"debuggercore.h",
|
||||||
|
"debuggerdialogs.cpp", "debuggerdialogs.h",
|
||||||
|
"debuggerengine.cpp", "debuggerengine.h",
|
||||||
|
"debuggerinternalconstants.h",
|
||||||
|
"debuggeritem.cpp", "debuggeritem.h",
|
||||||
|
"debuggeritemmanager.cpp", "debuggeritemmanager.h",
|
||||||
|
"debuggerkitaspect.cpp", "debuggerkitaspect.h",
|
||||||
|
"debuggermainwindow.cpp", "debuggermainwindow.h",
|
||||||
|
"debuggerplugin.cpp", "debuggerplugin.h",
|
||||||
|
"debuggerprotocol.cpp", "debuggerprotocol.h",
|
||||||
|
"debuggerrunconfigurationaspect.cpp", "debuggerrunconfigurationaspect.h",
|
||||||
|
"debuggerruncontrol.cpp", "debuggerruncontrol.h",
|
||||||
|
"debuggersourcepathmappingwidget.cpp", "debuggersourcepathmappingwidget.h",
|
||||||
|
"debuggertooltipmanager.cpp", "debuggertooltipmanager.h",
|
||||||
|
"disassembleragent.cpp", "disassembleragent.h",
|
||||||
|
"disassemblerlines.cpp", "disassemblerlines.h",
|
||||||
|
"enginemanager.cpp", "enginemanager.h",
|
||||||
|
"imageviewer.cpp", "imageviewer.h",
|
||||||
|
"loadcoredialog.cpp", "loadcoredialog.h",
|
||||||
|
"localsandexpressionswindow.cpp", "localsandexpressionswindow.h",
|
||||||
|
"logwindow.cpp", "logwindow.h",
|
||||||
|
"memoryagent.cpp", "memoryagent.h",
|
||||||
|
"moduleshandler.cpp", "moduleshandler.h",
|
||||||
|
"outputcollector.cpp", "outputcollector.h",
|
||||||
|
"peripheralregisterhandler.cpp", "peripheralregisterhandler.h",
|
||||||
|
"procinterrupt.cpp", "procinterrupt.h",
|
||||||
|
"registerhandler.cpp", "registerhandler.h",
|
||||||
|
"sourceagent.cpp", "sourceagent.h",
|
||||||
|
"sourcefileshandler.cpp", "sourcefileshandler.h",
|
||||||
|
"sourceutils.cpp", "sourceutils.h",
|
||||||
|
"stackframe.cpp", "stackframe.h",
|
||||||
|
"stackhandler.cpp", "stackhandler.h",
|
||||||
|
"stackwindow.cpp", "stackwindow.h",
|
||||||
|
"terminal.cpp", "terminal.h",
|
||||||
|
"threaddata.h",
|
||||||
|
"threadshandler.cpp", "threadshandler.h",
|
||||||
|
"watchdata.cpp", "watchdata.h",
|
||||||
|
"watchdelegatewidgets.cpp", "watchdelegatewidgets.h",
|
||||||
|
"watchhandler.cpp", "watchhandler.h",
|
||||||
|
"watchutils.cpp", "watchutils.h",
|
||||||
|
"watchwindow.cpp", "watchwindow.h",
|
||||||
|
"simplifytype.cpp", "simplifytype.h",
|
||||||
|
"unstartedappwatcherdialog.cpp", "unstartedappwatcherdialog.h"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "cdb"
|
||||||
|
prefix: "cdb/"
|
||||||
|
files: [
|
||||||
|
"cdbengine.cpp", "cdbengine.h",
|
||||||
|
"cdboptionspage.cpp", "cdboptionspage.h",
|
||||||
|
"cdbparsehelpers.cpp", "cdbparsehelpers.h",
|
||||||
|
"stringinputstream.cpp", "stringinputstream.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "gdb"
|
||||||
|
prefix: "gdb/"
|
||||||
|
files: [
|
||||||
|
"gdbengine.cpp", "gdbengine.h",
|
||||||
|
"gdbsettings.cpp", "gdbsettings.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "lldb"
|
||||||
|
prefix: "lldb/"
|
||||||
|
files: [
|
||||||
|
"lldbengine.cpp", "lldbengine.h"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "pdb"
|
||||||
|
prefix: "pdb/"
|
||||||
|
files: ["pdbengine.cpp", "pdbengine.h"]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "dap"
|
||||||
|
prefix: "dap/"
|
||||||
|
files: [
|
||||||
|
"cmakedapengine.cpp", "cmakedapengine.h",
|
||||||
|
"dapclient.cpp", "dapclient.h",
|
||||||
|
"dapengine.cpp", "dapengine.h",
|
||||||
|
"gdbdapengine.cpp", "gdbdapengine.h",
|
||||||
|
"pydapengine.cpp", "pydapengine.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "uvsc"
|
||||||
|
prefix: "uvsc/"
|
||||||
|
files: [
|
||||||
|
"uvscclient.cpp", "uvscclient.h",
|
||||||
|
"uvscdatatypes.h",
|
||||||
|
"uvscengine.cpp", "uvscengine.h",
|
||||||
|
"uvscfunctions.h",
|
||||||
|
"uvscutils.cpp", "uvscutils.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "QML Debugger"
|
||||||
|
prefix: "qml/"
|
||||||
|
files: [
|
||||||
|
"interactiveinterpreter.cpp", "interactiveinterpreter.h",
|
||||||
|
"qmlengine.cpp", "qmlengine.h",
|
||||||
|
"qmlengineutils.cpp", "qmlengineutils.h",
|
||||||
|
"qmlinspectoragent.cpp", "qmlinspectoragent.h",
|
||||||
|
"qmlv8debuggerclientconstants.h"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Debugger Console"
|
||||||
|
prefix: "console/"
|
||||||
|
files: [
|
||||||
|
"consoleitem.cpp", "consoleitem.h",
|
||||||
|
"consoleedit.cpp", "consoleedit.h",
|
||||||
|
"consoleitemdelegate.cpp", "consoleitemdelegate.h",
|
||||||
|
"consoleitemmodel.cpp", "consoleitemmodel.h",
|
||||||
|
"console.cpp", "console.h",
|
||||||
|
"consoleproxymodel.cpp", "consoleproxymodel.h",
|
||||||
|
"consoleview.cpp", "consoleview.h"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "shared"
|
||||||
|
prefix: "shared/"
|
||||||
|
files: [
|
||||||
|
"cdbsymbolpathlisteditor.cpp",
|
||||||
|
"cdbsymbolpathlisteditor.h",
|
||||||
|
"hostutils.cpp", "hostutils.h",
|
||||||
|
"peutils.cpp", "peutils.h",
|
||||||
|
"symbolpathsdialog.cpp", "symbolpathsdialog.h"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Images"
|
||||||
|
prefix: "images/"
|
||||||
|
files: ["*.png"]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Images/qml"
|
||||||
|
prefix: "images/qml/"
|
||||||
|
files: ["*.png"]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Images/analyzer"
|
||||||
|
prefix: "analyzer/images/"
|
||||||
|
files: ["*.png"]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "RegistryAccess"
|
||||||
|
condition: qbs.targetOS.contains("windows")
|
||||||
|
prefix: project.sharedSourcesDir + "/registryaccess/"
|
||||||
|
files: [
|
||||||
|
"registryaccess.cpp",
|
||||||
|
"registryaccess.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "RegisterPostMortem"
|
||||||
|
condition: qbs.targetOS.contains("windows")
|
||||||
|
files: [
|
||||||
|
"registerpostmortemaction.cpp",
|
||||||
|
"registerpostmortemaction.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Properties {
|
||||||
|
condition: qbs.targetOS.contains("windows")
|
||||||
|
cpp.dynamicLibraries: [
|
||||||
|
"advapi32",
|
||||||
|
"ole32",
|
||||||
|
"shell32"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Analyzer"
|
||||||
|
prefix: "analyzer/"
|
||||||
|
files: [
|
||||||
|
"analyzerbase.qrc",
|
||||||
|
"analyzerconstants.h",
|
||||||
|
"analyzericons.h",
|
||||||
|
"analyzermanager.h",
|
||||||
|
"analyzerrunconfigwidget.cpp",
|
||||||
|
"analyzerrunconfigwidget.h",
|
||||||
|
"analyzerutils.cpp",
|
||||||
|
"analyzerutils.h",
|
||||||
|
"detailederrorview.cpp",
|
||||||
|
"detailederrorview.h",
|
||||||
|
"diagnosticlocation.cpp",
|
||||||
|
"diagnosticlocation.h",
|
||||||
|
"startremotedialog.cpp",
|
||||||
|
"startremotedialog.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
QtcTestFiles {
|
||||||
|
files: [
|
||||||
|
"debuggerunittests.qrc",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Unit test resources"
|
||||||
|
prefix: "unit-tests/"
|
||||||
|
fileTags: []
|
||||||
|
files: ["**/*"]
|
||||||
|
}
|
||||||
|
|
||||||
|
Export {
|
||||||
Depends { name: "CPlusPlus" }
|
Depends { name: "CPlusPlus" }
|
||||||
Depends { name: "QmlDebug" }
|
|
||||||
Depends { name: "LanguageUtils" }
|
|
||||||
Depends { name: "QmlJS" }
|
|
||||||
Depends { name: "Utils" }
|
|
||||||
|
|
||||||
Depends { name: "Core" }
|
|
||||||
Depends { name: "CppEditor" }
|
|
||||||
Depends { name: "ProjectExplorer" }
|
|
||||||
Depends { name: "QtSupport" }
|
|
||||||
Depends { name: "TextEditor" }
|
|
||||||
|
|
||||||
pluginTestDepends: [
|
|
||||||
"QmakeProjectManager"
|
|
||||||
]
|
|
||||||
|
|
||||||
cpp.includePaths: base.concat([project.sharedSourcesDir + "/registryaccess"])
|
|
||||||
cpp.enableExceptions: true
|
|
||||||
|
|
||||||
pluginRecommends: [
|
|
||||||
"CppEditor",
|
|
||||||
"BinEditor"
|
|
||||||
]
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "General"
|
|
||||||
files: [
|
|
||||||
"breakhandler.cpp", "breakhandler.h",
|
|
||||||
"breakpoint.cpp", "breakpoint.h",
|
|
||||||
"commonoptionspage.cpp", "commonoptionspage.h",
|
|
||||||
"debugger.qrc",
|
|
||||||
"debugger_global.h", "debuggertr.h",
|
|
||||||
"debuggeractions.cpp", "debuggeractions.h",
|
|
||||||
"debuggerconstants.h",
|
|
||||||
"debuggericons.h", "debuggericons.cpp",
|
|
||||||
"debuggercore.h",
|
|
||||||
"debuggerdialogs.cpp", "debuggerdialogs.h",
|
|
||||||
"debuggerengine.cpp", "debuggerengine.h",
|
|
||||||
"debuggerinternalconstants.h",
|
|
||||||
"debuggeritem.cpp", "debuggeritem.h",
|
|
||||||
"debuggeritemmanager.cpp", "debuggeritemmanager.h",
|
|
||||||
"debuggerkitaspect.cpp", "debuggerkitaspect.h",
|
|
||||||
"debuggermainwindow.cpp", "debuggermainwindow.h",
|
|
||||||
"debuggerplugin.cpp", "debuggerplugin.h",
|
|
||||||
"debuggerprotocol.cpp", "debuggerprotocol.h",
|
|
||||||
"debuggerrunconfigurationaspect.cpp", "debuggerrunconfigurationaspect.h",
|
|
||||||
"debuggerruncontrol.cpp", "debuggerruncontrol.h",
|
|
||||||
"debuggersourcepathmappingwidget.cpp", "debuggersourcepathmappingwidget.h",
|
|
||||||
"debuggertooltipmanager.cpp", "debuggertooltipmanager.h",
|
|
||||||
"disassembleragent.cpp", "disassembleragent.h",
|
|
||||||
"disassemblerlines.cpp", "disassemblerlines.h",
|
|
||||||
"enginemanager.cpp", "enginemanager.h",
|
|
||||||
"imageviewer.cpp", "imageviewer.h",
|
|
||||||
"loadcoredialog.cpp", "loadcoredialog.h",
|
|
||||||
"localsandexpressionswindow.cpp", "localsandexpressionswindow.h",
|
|
||||||
"logwindow.cpp", "logwindow.h",
|
|
||||||
"memoryagent.cpp", "memoryagent.h",
|
|
||||||
"moduleshandler.cpp", "moduleshandler.h",
|
|
||||||
"outputcollector.cpp", "outputcollector.h",
|
|
||||||
"peripheralregisterhandler.cpp", "peripheralregisterhandler.h",
|
|
||||||
"procinterrupt.cpp", "procinterrupt.h",
|
|
||||||
"registerhandler.cpp", "registerhandler.h",
|
|
||||||
"sourceagent.cpp", "sourceagent.h",
|
|
||||||
"sourcefileshandler.cpp", "sourcefileshandler.h",
|
|
||||||
"sourceutils.cpp", "sourceutils.h",
|
|
||||||
"stackframe.cpp", "stackframe.h",
|
|
||||||
"stackhandler.cpp", "stackhandler.h",
|
|
||||||
"stackwindow.cpp", "stackwindow.h",
|
|
||||||
"terminal.cpp", "terminal.h",
|
|
||||||
"threaddata.h",
|
|
||||||
"threadshandler.cpp", "threadshandler.h",
|
|
||||||
"watchdata.cpp", "watchdata.h",
|
|
||||||
"watchdelegatewidgets.cpp", "watchdelegatewidgets.h",
|
|
||||||
"watchhandler.cpp", "watchhandler.h",
|
|
||||||
"watchutils.cpp", "watchutils.h",
|
|
||||||
"watchwindow.cpp", "watchwindow.h",
|
|
||||||
"simplifytype.cpp", "simplifytype.h",
|
|
||||||
"unstartedappwatcherdialog.cpp", "unstartedappwatcherdialog.h"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "cdb"
|
|
||||||
prefix: "cdb/"
|
|
||||||
files: [
|
|
||||||
"cdbengine.cpp", "cdbengine.h",
|
|
||||||
"cdboptionspage.cpp", "cdboptionspage.h",
|
|
||||||
"cdbparsehelpers.cpp", "cdbparsehelpers.h",
|
|
||||||
"stringinputstream.cpp", "stringinputstream.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "gdb"
|
|
||||||
prefix: "gdb/"
|
|
||||||
files: [
|
|
||||||
"gdbengine.cpp", "gdbengine.h",
|
|
||||||
"gdbsettings.cpp", "gdbsettings.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "lldb"
|
|
||||||
prefix: "lldb/"
|
|
||||||
files: [
|
|
||||||
"lldbengine.cpp", "lldbengine.h"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "pdb"
|
|
||||||
prefix: "pdb/"
|
|
||||||
files: ["pdbengine.cpp", "pdbengine.h"]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "dap"
|
|
||||||
prefix: "dap/"
|
|
||||||
files: [
|
|
||||||
"cmakedapengine.cpp", "cmakedapengine.h",
|
|
||||||
"dapclient.cpp", "dapclient.h",
|
|
||||||
"dapengine.cpp", "dapengine.h",
|
|
||||||
"gdbdapengine.cpp", "gdbdapengine.h",
|
|
||||||
"pydapengine.cpp", "pydapengine.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "uvsc"
|
|
||||||
prefix: "uvsc/"
|
|
||||||
files: [
|
|
||||||
"uvscclient.cpp", "uvscclient.h",
|
|
||||||
"uvscdatatypes.h",
|
|
||||||
"uvscengine.cpp", "uvscengine.h",
|
|
||||||
"uvscfunctions.h",
|
|
||||||
"uvscutils.cpp", "uvscutils.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "QML Debugger"
|
|
||||||
prefix: "qml/"
|
|
||||||
files: [
|
|
||||||
"interactiveinterpreter.cpp", "interactiveinterpreter.h",
|
|
||||||
"qmlengine.cpp", "qmlengine.h",
|
|
||||||
"qmlengineutils.cpp", "qmlengineutils.h",
|
|
||||||
"qmlinspectoragent.cpp", "qmlinspectoragent.h",
|
|
||||||
"qmlv8debuggerclientconstants.h"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Debugger Console"
|
|
||||||
prefix: "console/"
|
|
||||||
files: [
|
|
||||||
"consoleitem.cpp", "consoleitem.h",
|
|
||||||
"consoleedit.cpp", "consoleedit.h",
|
|
||||||
"consoleitemdelegate.cpp", "consoleitemdelegate.h",
|
|
||||||
"consoleitemmodel.cpp", "consoleitemmodel.h",
|
|
||||||
"console.cpp", "console.h",
|
|
||||||
"consoleproxymodel.cpp", "consoleproxymodel.h",
|
|
||||||
"consoleview.cpp", "consoleview.h"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "shared"
|
|
||||||
prefix: "shared/"
|
|
||||||
files: [
|
|
||||||
"cdbsymbolpathlisteditor.cpp",
|
|
||||||
"cdbsymbolpathlisteditor.h",
|
|
||||||
"hostutils.cpp", "hostutils.h",
|
|
||||||
"peutils.cpp", "peutils.h",
|
|
||||||
"symbolpathsdialog.cpp", "symbolpathsdialog.h"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Images"
|
|
||||||
prefix: "images/"
|
|
||||||
files: ["*.png"]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Images/qml"
|
|
||||||
prefix: "images/qml/"
|
|
||||||
files: ["*.png"]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Images/analyzer"
|
|
||||||
prefix: "analyzer/images/"
|
|
||||||
files: ["*.png"]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "RegistryAccess"
|
|
||||||
condition: qbs.targetOS.contains("windows")
|
|
||||||
prefix: project.sharedSourcesDir + "/registryaccess/"
|
|
||||||
files: [
|
|
||||||
"registryaccess.cpp",
|
|
||||||
"registryaccess.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "RegisterPostMortem"
|
|
||||||
condition: qbs.targetOS.contains("windows")
|
|
||||||
files: [
|
|
||||||
"registerpostmortemaction.cpp",
|
|
||||||
"registerpostmortemaction.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Properties {
|
|
||||||
condition: qbs.targetOS.contains("windows")
|
|
||||||
cpp.dynamicLibraries: [
|
|
||||||
"advapi32",
|
|
||||||
"ole32",
|
|
||||||
"shell32"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Analyzer"
|
|
||||||
prefix: "analyzer/"
|
|
||||||
files: [
|
|
||||||
"analyzerbase.qrc",
|
|
||||||
"analyzerconstants.h",
|
|
||||||
"analyzericons.h",
|
|
||||||
"analyzermanager.h",
|
|
||||||
"analyzerrunconfigwidget.cpp",
|
|
||||||
"analyzerrunconfigwidget.h",
|
|
||||||
"analyzerutils.cpp",
|
|
||||||
"analyzerutils.h",
|
|
||||||
"detailederrorview.cpp",
|
|
||||||
"detailederrorview.h",
|
|
||||||
"diagnosticlocation.cpp",
|
|
||||||
"diagnosticlocation.h",
|
|
||||||
"startremotedialog.cpp",
|
|
||||||
"startremotedialog.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
QtcTestFiles {
|
|
||||||
files: [
|
|
||||||
"debuggerunittests.qrc",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Unit test resources"
|
|
||||||
prefix: "unit-tests/"
|
|
||||||
fileTags: []
|
|
||||||
files: ["**/*"]
|
|
||||||
}
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "CPlusPlus" }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,90 +1,86 @@
|
|||||||
import qbs.Utilities
|
import qbs.Utilities
|
||||||
|
|
||||||
Project {
|
QtcPlugin {
|
||||||
name: "Help"
|
name: "Help"
|
||||||
|
|
||||||
QtcPlugin {
|
Depends { name: "Qt"; submodules: ["help", "network", "sql"] }
|
||||||
name: "Help"
|
Depends { name: "Qt.printsupport" }
|
||||||
|
Depends { name: "Qt.webenginewidgets"; required: false }
|
||||||
|
|
||||||
Depends { name: "Qt"; submodules: ["help", "network", "sql"]; }
|
Depends { name: "Aggregation" }
|
||||||
Depends { name: "Qt.printsupport" }
|
Depends { name: "Utils" }
|
||||||
Depends { name: "Qt.webenginewidgets"; required: false }
|
|
||||||
|
|
||||||
Depends { name: "Aggregation" }
|
Depends { name: "Core" }
|
||||||
Depends { name: "Utils" }
|
Depends { name: "ProjectExplorer" }
|
||||||
|
|
||||||
Depends { name: "Core" }
|
Depends { name: "qlitehtml"; required: false }
|
||||||
Depends { name: "ProjectExplorer" }
|
|
||||||
|
|
||||||
Depends { name: "qlitehtml"; required: false }
|
cpp.defines: {
|
||||||
|
var defines = base.concat(["QT_CLUCENE_SUPPORT"]);
|
||||||
|
if (Qt.webenginewidgets.present)
|
||||||
|
defines.push("QTC_WEBENGINE_HELPVIEWER");
|
||||||
|
if (qlitehtml.present)
|
||||||
|
defines.push("QTC_LITEHTML_HELPVIEWER")
|
||||||
|
return defines;
|
||||||
|
}
|
||||||
|
|
||||||
cpp.defines: {
|
// We include headers from src/shared/help, and their sources include headers from here...
|
||||||
var defines = base.concat(["QT_CLUCENE_SUPPORT"]);
|
cpp.includePaths: base.concat([sharedSources.prefix, path])
|
||||||
if (Qt.webenginewidgets.present)
|
|
||||||
defines.push("QTC_WEBENGINE_HELPVIEWER");
|
|
||||||
if (qlitehtml.present)
|
|
||||||
defines.push("QTC_LITEHTML_HELPVIEWER")
|
|
||||||
return defines;
|
|
||||||
}
|
|
||||||
|
|
||||||
// We include headers from src/shared/help, and their sources include headers from here...
|
Group {
|
||||||
cpp.includePaths: base.concat([sharedSources.prefix, path])
|
name: "Sources"
|
||||||
|
files: [
|
||||||
|
"docsettingspage.cpp", "docsettingspage.h",
|
||||||
|
"filtersettingspage.cpp", "filtersettingspage.h",
|
||||||
|
"generalsettingspage.cpp", "generalsettingspage.h",
|
||||||
|
"help.qrc",
|
||||||
|
"helpconstants.h",
|
||||||
|
"helpfindsupport.cpp", "helpfindsupport.h",
|
||||||
|
"helpindexfilter.cpp", "helpindexfilter.h",
|
||||||
|
"helpmanager.cpp", "helpmanager.h",
|
||||||
|
"helpplugin.cpp", "helpplugin.h",
|
||||||
|
"helpviewer.cpp", "helpviewer.h",
|
||||||
|
"helpwidget.cpp", "helpwidget.h",
|
||||||
|
"helptr.h",
|
||||||
|
"localhelpmanager.cpp", "localhelpmanager.h",
|
||||||
|
"openpagesmanager.cpp", "openpagesmanager.h",
|
||||||
|
"openpagesswitcher.cpp", "openpagesswitcher.h",
|
||||||
|
"openpageswidget.cpp", "openpageswidget.h",
|
||||||
|
"searchtaskhandler.cpp", "searchtaskhandler.h",
|
||||||
|
"searchwidget.cpp", "searchwidget.h",
|
||||||
|
"textbrowserhelpviewer.cpp", "textbrowserhelpviewer.h",
|
||||||
|
"xbelsupport.cpp", "xbelsupport.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "Sources"
|
name: "WebEngine Sources"
|
||||||
files: [
|
condition: Qt.webenginewidgets.present
|
||||||
"docsettingspage.cpp", "docsettingspage.h",
|
files: [
|
||||||
"filtersettingspage.cpp", "filtersettingspage.h",
|
"webenginehelpviewer.cpp", "webenginehelpviewer.h"
|
||||||
"generalsettingspage.cpp", "generalsettingspage.h",
|
]
|
||||||
"help.qrc",
|
}
|
||||||
"helpconstants.h",
|
|
||||||
"helpfindsupport.cpp", "helpfindsupport.h",
|
|
||||||
"helpindexfilter.cpp", "helpindexfilter.h",
|
|
||||||
"helpmanager.cpp", "helpmanager.h",
|
|
||||||
"helpplugin.cpp", "helpplugin.h",
|
|
||||||
"helpviewer.cpp", "helpviewer.h",
|
|
||||||
"helpwidget.cpp", "helpwidget.h",
|
|
||||||
"helptr.h",
|
|
||||||
"localhelpmanager.cpp", "localhelpmanager.h",
|
|
||||||
"openpagesmanager.cpp", "openpagesmanager.h",
|
|
||||||
"openpagesswitcher.cpp", "openpagesswitcher.h",
|
|
||||||
"openpageswidget.cpp", "openpageswidget.h",
|
|
||||||
"searchtaskhandler.cpp", "searchtaskhandler.h",
|
|
||||||
"searchwidget.cpp", "searchwidget.h",
|
|
||||||
"textbrowserhelpviewer.cpp", "textbrowserhelpviewer.h",
|
|
||||||
"xbelsupport.cpp", "xbelsupport.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "WebEngine Sources"
|
name: "litehtml-specific sources"
|
||||||
condition: Qt.webenginewidgets.present
|
condition: qlitehtml.present
|
||||||
files: [
|
cpp.warningLevel: "none"
|
||||||
"webenginehelpviewer.cpp", "webenginehelpviewer.h"
|
files: [
|
||||||
]
|
"litehtmlhelpviewer.cpp",
|
||||||
}
|
"litehtmlhelpviewer.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "litehtml-specific sources"
|
id: sharedSources
|
||||||
condition: qlitehtml.present
|
name: "Shared Sources"
|
||||||
cpp.warningLevel: "none"
|
prefix: project.sharedSourcesDir + "/help/"
|
||||||
files: [
|
files: [
|
||||||
"litehtmlhelpviewer.cpp",
|
"bookmarkmanager.cpp", "bookmarkmanager.h",
|
||||||
"litehtmlhelpviewer.h",
|
"contentwindow.cpp", "contentwindow.h",
|
||||||
]
|
"helpicons.h",
|
||||||
}
|
"indexwindow.cpp", "indexwindow.h",
|
||||||
|
"topicchooser.cpp", "topicchooser.h",
|
||||||
Group {
|
]
|
||||||
id: sharedSources
|
|
||||||
name: "Shared Sources"
|
|
||||||
prefix: project.sharedSourcesDir + "/help/"
|
|
||||||
files: [
|
|
||||||
"bookmarkmanager.cpp", "bookmarkmanager.h",
|
|
||||||
"contentwindow.cpp", "contentwindow.h",
|
|
||||||
"helpicons.h",
|
|
||||||
"indexwindow.cpp", "indexwindow.h",
|
|
||||||
"topicchooser.cpp", "topicchooser.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,261 +1,257 @@
|
|||||||
import qbs 1.0
|
QtcPlugin {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "ProjectExplorer"
|
name: "ProjectExplorer"
|
||||||
|
|
||||||
QtcPlugin {
|
Depends { name: "Qt"; submodules: ["widgets", "xml", "network", "qml"] }
|
||||||
Depends { name: "Qt"; submodules: ["widgets", "xml", "network", "qml"] }
|
Depends { name: "Aggregation" }
|
||||||
Depends { name: "Aggregation" }
|
Depends { name: "Utils" }
|
||||||
Depends { name: "Utils" }
|
|
||||||
|
|
||||||
Depends { name: "Core" }
|
Depends { name: "Core" }
|
||||||
Depends { name: "TextEditor" }
|
Depends { name: "TextEditor" }
|
||||||
|
|
||||||
Depends { name: "libclang"; required: false }
|
Depends { name: "libclang"; required: false }
|
||||||
Depends { name: "clang_defines" }
|
Depends { name: "clang_defines" }
|
||||||
|
|
||||||
pluginTestDepends: ["GenericProjectManager"]
|
pluginTestDepends: ["GenericProjectManager"]
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "General"
|
name: "General"
|
||||||
files: [
|
files: [
|
||||||
"abi.cpp", "abi.h",
|
"abi.cpp", "abi.h",
|
||||||
"abiwidget.cpp", "abiwidget.h",
|
"abiwidget.cpp", "abiwidget.h",
|
||||||
"abstractprocessstep.cpp", "abstractprocessstep.h",
|
"abstractprocessstep.cpp", "abstractprocessstep.h",
|
||||||
"addrunconfigdialog.cpp", "addrunconfigdialog.h",
|
"addrunconfigdialog.cpp", "addrunconfigdialog.h",
|
||||||
"allprojectsfilter.cpp", "allprojectsfilter.h",
|
"allprojectsfilter.cpp", "allprojectsfilter.h",
|
||||||
"allprojectsfind.cpp", "allprojectsfind.h",
|
"allprojectsfind.cpp", "allprojectsfind.h",
|
||||||
"appoutputpane.cpp", "appoutputpane.h",
|
"appoutputpane.cpp", "appoutputpane.h",
|
||||||
"baseprojectwizarddialog.cpp", "baseprojectwizarddialog.h",
|
"baseprojectwizarddialog.cpp", "baseprojectwizarddialog.h",
|
||||||
"buildaspects.cpp", "buildaspects.h",
|
"buildaspects.cpp", "buildaspects.h",
|
||||||
"buildconfiguration.cpp", "buildconfiguration.h",
|
"buildconfiguration.cpp", "buildconfiguration.h",
|
||||||
"buildinfo.cpp", "buildinfo.h",
|
"buildinfo.cpp", "buildinfo.h",
|
||||||
"buildmanager.cpp", "buildmanager.h",
|
"buildmanager.cpp", "buildmanager.h",
|
||||||
"buildprogress.cpp", "buildprogress.h",
|
"buildprogress.cpp", "buildprogress.h",
|
||||||
"buildpropertiessettings.cpp", "buildpropertiessettings.h",
|
"buildpropertiessettings.cpp", "buildpropertiessettings.h",
|
||||||
"buildsettingspropertiespage.cpp", "buildsettingspropertiespage.h",
|
"buildsettingspropertiespage.cpp", "buildsettingspropertiespage.h",
|
||||||
"buildstep.cpp", "buildstep.h",
|
"buildstep.cpp", "buildstep.h",
|
||||||
"buildsteplist.cpp", "buildsteplist.h",
|
"buildsteplist.cpp", "buildsteplist.h",
|
||||||
"buildstepspage.cpp", "buildstepspage.h",
|
"buildstepspage.cpp", "buildstepspage.h",
|
||||||
"buildsystem.cpp", "buildsystem.h",
|
"buildsystem.cpp", "buildsystem.h",
|
||||||
"buildtargetinfo.h",
|
"buildtargetinfo.h",
|
||||||
"buildtargettype.h",
|
"buildtargettype.h",
|
||||||
"clangparser.cpp", "clangparser.h",
|
"clangparser.cpp", "clangparser.h",
|
||||||
"codestylesettingspropertiespage.cpp", "codestylesettingspropertiespage.h",
|
"codestylesettingspropertiespage.cpp", "codestylesettingspropertiespage.h",
|
||||||
"compileoutputwindow.cpp", "compileoutputwindow.h",
|
"compileoutputwindow.cpp", "compileoutputwindow.h",
|
||||||
"configtaskhandler.cpp", "configtaskhandler.h",
|
"configtaskhandler.cpp", "configtaskhandler.h",
|
||||||
"copystep.cpp", "copystep.h",
|
"copystep.cpp", "copystep.h",
|
||||||
"copytaskhandler.cpp", "copytaskhandler.h",
|
"copytaskhandler.cpp", "copytaskhandler.h",
|
||||||
"currentprojectfilter.cpp", "currentprojectfilter.h",
|
"currentprojectfilter.cpp", "currentprojectfilter.h",
|
||||||
"currentprojectfind.cpp", "currentprojectfind.h",
|
"currentprojectfind.cpp", "currentprojectfind.h",
|
||||||
"customexecutablerunconfiguration.cpp", "customexecutablerunconfiguration.h",
|
"customexecutablerunconfiguration.cpp", "customexecutablerunconfiguration.h",
|
||||||
"customparser.cpp", "customparser.h",
|
"customparser.cpp", "customparser.h",
|
||||||
"customparserconfigdialog.cpp", "customparserconfigdialog.h",
|
"customparserconfigdialog.cpp", "customparserconfigdialog.h",
|
||||||
"customparserssettingspage.cpp", "customparserssettingspage.h",
|
"customparserssettingspage.cpp", "customparserssettingspage.h",
|
||||||
"customtoolchain.cpp", "customtoolchain.h",
|
"customtoolchain.cpp", "customtoolchain.h",
|
||||||
"dependenciespanel.cpp", "dependenciespanel.h",
|
"dependenciespanel.cpp", "dependenciespanel.h",
|
||||||
"deployablefile.cpp", "deployablefile.h",
|
"deployablefile.cpp", "deployablefile.h",
|
||||||
"deployconfiguration.cpp", "deployconfiguration.h",
|
"deployconfiguration.cpp", "deployconfiguration.h",
|
||||||
"deploymentdata.cpp",
|
"deploymentdata.cpp",
|
||||||
"deploymentdata.h",
|
"deploymentdata.h",
|
||||||
"deploymentdataview.cpp",
|
"deploymentdataview.cpp",
|
||||||
"deploymentdataview.h",
|
"deploymentdataview.h",
|
||||||
"desktoprunconfiguration.cpp", "desktoprunconfiguration.h",
|
"desktoprunconfiguration.cpp", "desktoprunconfiguration.h",
|
||||||
"editorconfiguration.cpp", "editorconfiguration.h",
|
"editorconfiguration.cpp", "editorconfiguration.h",
|
||||||
"editorsettingspropertiespage.cpp", "editorsettingspropertiespage.h",
|
"editorsettingspropertiespage.cpp", "editorsettingspropertiespage.h",
|
||||||
"environmentaspect.cpp", "environmentaspect.h",
|
"environmentaspect.cpp", "environmentaspect.h",
|
||||||
"environmentaspectwidget.cpp", "environmentaspectwidget.h",
|
"environmentaspectwidget.cpp", "environmentaspectwidget.h",
|
||||||
"environmentwidget.cpp", "environmentwidget.h",
|
"environmentwidget.cpp", "environmentwidget.h",
|
||||||
"expanddata.cpp", "expanddata.h",
|
"expanddata.cpp", "expanddata.h",
|
||||||
"extraabi.cpp", "extraabi.h",
|
"extraabi.cpp", "extraabi.h",
|
||||||
"extracompiler.cpp", "extracompiler.h",
|
"extracompiler.cpp", "extracompiler.h",
|
||||||
"fileinsessionfinder.cpp", "fileinsessionfinder.h",
|
"fileinsessionfinder.cpp", "fileinsessionfinder.h",
|
||||||
"filesinallprojectsfind.cpp", "filesinallprojectsfind.h",
|
"filesinallprojectsfind.cpp", "filesinallprojectsfind.h",
|
||||||
"filterkitaspectsdialog.cpp", "filterkitaspectsdialog.h",
|
"filterkitaspectsdialog.cpp", "filterkitaspectsdialog.h",
|
||||||
"gccparser.cpp", "gccparser.h",
|
"gccparser.cpp", "gccparser.h",
|
||||||
"gcctoolchain.cpp", "gcctoolchain.h",
|
"gcctoolchain.cpp", "gcctoolchain.h",
|
||||||
"gnumakeparser.cpp", "gnumakeparser.h",
|
"gnumakeparser.cpp", "gnumakeparser.h",
|
||||||
"headerpath.h",
|
"headerpath.h",
|
||||||
"importwidget.cpp", "importwidget.h",
|
"importwidget.cpp", "importwidget.h",
|
||||||
"ioutputparser.cpp", "ioutputparser.h",
|
"ioutputparser.cpp", "ioutputparser.h",
|
||||||
"ipotentialkit.h",
|
"ipotentialkit.h",
|
||||||
"itaskhandler.h",
|
"itaskhandler.h",
|
||||||
"kit.cpp", "kit.h",
|
"kit.cpp", "kit.h",
|
||||||
"kitaspects.cpp", "kitaspects.h",
|
"kitaspects.cpp", "kitaspects.h",
|
||||||
"kitchooser.cpp", "kitchooser.h",
|
"kitchooser.cpp", "kitchooser.h",
|
||||||
"kitfeatureprovider.h",
|
"kitfeatureprovider.h",
|
||||||
"kitmanager.cpp", "kitmanager.h",
|
"kitmanager.cpp", "kitmanager.h",
|
||||||
"kitmanagerconfigwidget.cpp", "kitmanagerconfigwidget.h",
|
"kitmanagerconfigwidget.cpp", "kitmanagerconfigwidget.h",
|
||||||
"kitoptionspage.cpp", "kitoptionspage.h",
|
"kitoptionspage.cpp", "kitoptionspage.h",
|
||||||
"ldparser.cpp", "ldparser.h",
|
"ldparser.cpp", "ldparser.h",
|
||||||
"lldparser.cpp", "lldparser.h",
|
"lldparser.cpp", "lldparser.h",
|
||||||
"linuxiccparser.cpp", "linuxiccparser.h",
|
"linuxiccparser.cpp", "linuxiccparser.h",
|
||||||
"makestep.cpp", "makestep.h",
|
"makestep.cpp", "makestep.h",
|
||||||
"miniprojecttargetselector.cpp", "miniprojecttargetselector.h",
|
"miniprojecttargetselector.cpp", "miniprojecttargetselector.h",
|
||||||
"msvcparser.cpp", "msvcparser.h",
|
"msvcparser.cpp", "msvcparser.h",
|
||||||
"namedwidget.cpp", "namedwidget.h",
|
"namedwidget.cpp", "namedwidget.h",
|
||||||
"osparser.cpp", "osparser.h",
|
"osparser.cpp", "osparser.h",
|
||||||
"panelswidget.cpp", "panelswidget.h",
|
"panelswidget.cpp", "panelswidget.h",
|
||||||
"parseissuesdialog.cpp", "parseissuesdialog.h",
|
"parseissuesdialog.cpp", "parseissuesdialog.h",
|
||||||
"processparameters.cpp", "processparameters.h",
|
"processparameters.cpp", "processparameters.h",
|
||||||
"processstep.cpp", "processstep.h",
|
"processstep.cpp", "processstep.h",
|
||||||
"project.cpp", "project.h",
|
"project.cpp", "project.h",
|
||||||
"projectcommentssettings.cpp", "projectcommentssettings.h",
|
"projectcommentssettings.cpp", "projectcommentssettings.h",
|
||||||
"projectconfiguration.cpp", "projectconfiguration.h",
|
"projectconfiguration.cpp", "projectconfiguration.h",
|
||||||
"projectconfigurationmodel.cpp", "projectconfigurationmodel.h",
|
"projectconfigurationmodel.cpp", "projectconfigurationmodel.h",
|
||||||
"projectexplorer.cpp", "projectexplorer.h",
|
"projectexplorer.cpp", "projectexplorer.h",
|
||||||
"projectexplorer.qrc",
|
"projectexplorer.qrc",
|
||||||
"projectexplorer_export.h",
|
"projectexplorer_export.h",
|
||||||
"projectexplorerconstants.cpp",
|
"projectexplorerconstants.cpp",
|
||||||
"projectexplorerconstants.h",
|
"projectexplorerconstants.h",
|
||||||
"projectexplorericons.h", "projectexplorericons.cpp",
|
"projectexplorericons.h", "projectexplorericons.cpp",
|
||||||
"projectexplorersettings.h", "projectexplorersettings.cpp",
|
"projectexplorersettings.h", "projectexplorersettings.cpp",
|
||||||
"projectexplorertr.h",
|
"projectexplorertr.h",
|
||||||
"projectfilewizardextension.cpp", "projectfilewizardextension.h",
|
"projectfilewizardextension.cpp", "projectfilewizardextension.h",
|
||||||
"projectimporter.cpp", "projectimporter.h",
|
"projectimporter.cpp", "projectimporter.h",
|
||||||
"projectmacro.cpp", "projectmacro.h",
|
"projectmacro.cpp", "projectmacro.h",
|
||||||
"projectmanager.cpp", "projectmanager.h",
|
"projectmanager.cpp", "projectmanager.h",
|
||||||
"projectmodels.cpp", "projectmodels.h",
|
"projectmodels.cpp", "projectmodels.h",
|
||||||
"projectnodes.cpp", "projectnodes.h",
|
"projectnodes.cpp", "projectnodes.h",
|
||||||
"projectpanelfactory.cpp", "projectpanelfactory.h",
|
"projectpanelfactory.cpp", "projectpanelfactory.h",
|
||||||
"projectsettingswidget.cpp", "projectsettingswidget.h",
|
"projectsettingswidget.cpp", "projectsettingswidget.h",
|
||||||
"projecttree.cpp",
|
"projecttree.cpp",
|
||||||
"projecttree.h",
|
"projecttree.h",
|
||||||
"projecttreewidget.cpp", "projecttreewidget.h",
|
"projecttreewidget.cpp", "projecttreewidget.h",
|
||||||
"projectwindow.cpp", "projectwindow.h",
|
"projectwindow.cpp", "projectwindow.h",
|
||||||
"projectwizardpage.cpp", "projectwizardpage.h",
|
"projectwizardpage.cpp", "projectwizardpage.h",
|
||||||
"rawprojectpart.cpp", "rawprojectpart.h",
|
"rawprojectpart.cpp", "rawprojectpart.h",
|
||||||
"removetaskhandler.cpp", "removetaskhandler.h",
|
"removetaskhandler.cpp", "removetaskhandler.h",
|
||||||
"runconfiguration.cpp", "runconfiguration.h",
|
"runconfiguration.cpp", "runconfiguration.h",
|
||||||
"runcontrol.cpp", "runcontrol.h",
|
"runcontrol.cpp", "runcontrol.h",
|
||||||
"runconfigurationaspects.cpp", "runconfigurationaspects.h",
|
"runconfigurationaspects.cpp", "runconfigurationaspects.h",
|
||||||
"runsettingspropertiespage.cpp", "runsettingspropertiespage.h",
|
"runsettingspropertiespage.cpp", "runsettingspropertiespage.h",
|
||||||
"sanitizerparser.cpp", "sanitizerparser.h",
|
"sanitizerparser.cpp", "sanitizerparser.h",
|
||||||
"selectablefilesmodel.cpp", "selectablefilesmodel.h",
|
"selectablefilesmodel.cpp", "selectablefilesmodel.h",
|
||||||
"showineditortaskhandler.cpp", "showineditortaskhandler.h",
|
"showineditortaskhandler.cpp", "showineditortaskhandler.h",
|
||||||
"showoutputtaskhandler.cpp", "showoutputtaskhandler.h",
|
"showoutputtaskhandler.cpp", "showoutputtaskhandler.h",
|
||||||
"simpleprojectwizard.cpp", "simpleprojectwizard.h",
|
"simpleprojectwizard.cpp", "simpleprojectwizard.h",
|
||||||
"target.cpp", "target.h",
|
"target.cpp", "target.h",
|
||||||
"targetsettingspanel.cpp", "targetsettingspanel.h",
|
"targetsettingspanel.cpp", "targetsettingspanel.h",
|
||||||
"targetsetuppage.cpp", "targetsetuppage.h",
|
"targetsetuppage.cpp", "targetsetuppage.h",
|
||||||
"targetsetupwidget.cpp", "targetsetupwidget.h",
|
"targetsetupwidget.cpp", "targetsetupwidget.h",
|
||||||
"task.cpp", "task.h",
|
"task.cpp", "task.h",
|
||||||
"taskfile.cpp", "taskfile.h",
|
"taskfile.cpp", "taskfile.h",
|
||||||
"taskhub.cpp", "taskhub.h",
|
"taskhub.cpp", "taskhub.h",
|
||||||
"taskmodel.cpp", "taskmodel.h",
|
"taskmodel.cpp", "taskmodel.h",
|
||||||
"taskwindow.cpp", "taskwindow.h",
|
"taskwindow.cpp", "taskwindow.h",
|
||||||
"toolchain.cpp", "toolchain.h",
|
"toolchain.cpp", "toolchain.h",
|
||||||
"toolchaincache.h",
|
"toolchaincache.h",
|
||||||
"toolchainconfigwidget.cpp", "toolchainconfigwidget.h",
|
"toolchainconfigwidget.cpp", "toolchainconfigwidget.h",
|
||||||
"toolchainmanager.cpp", "toolchainmanager.h",
|
"toolchainmanager.cpp", "toolchainmanager.h",
|
||||||
"toolchainoptionspage.cpp", "toolchainoptionspage.h",
|
"toolchainoptionspage.cpp", "toolchainoptionspage.h",
|
||||||
"toolchainsettingsaccessor.cpp", "toolchainsettingsaccessor.h",
|
"toolchainsettingsaccessor.cpp", "toolchainsettingsaccessor.h",
|
||||||
"treescanner.cpp", "treescanner.h",
|
"treescanner.cpp", "treescanner.h",
|
||||||
"userfileaccessor.cpp", "userfileaccessor.h",
|
"userfileaccessor.cpp", "userfileaccessor.h",
|
||||||
"vcsannotatetaskhandler.cpp", "vcsannotatetaskhandler.h",
|
"vcsannotatetaskhandler.cpp", "vcsannotatetaskhandler.h",
|
||||||
"waitforstopdialog.cpp", "waitforstopdialog.h",
|
"waitforstopdialog.cpp", "waitforstopdialog.h",
|
||||||
"windebuginterface.cpp", "windebuginterface.h",
|
"windebuginterface.cpp", "windebuginterface.h",
|
||||||
"xcodebuildparser.cpp", "xcodebuildparser.h"
|
"xcodebuildparser.cpp", "xcodebuildparser.h"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "Project Welcome Page"
|
name: "Project Welcome Page"
|
||||||
files: [
|
files: [
|
||||||
"projectwelcomepage.cpp",
|
"projectwelcomepage.cpp",
|
||||||
"projectwelcomepage.h"
|
"projectwelcomepage.h"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "JsonWizard"
|
name: "JsonWizard"
|
||||||
prefix: "jsonwizard/"
|
prefix: "jsonwizard/"
|
||||||
files: [
|
files: [
|
||||||
"jsonfieldpage.cpp", "jsonfieldpage_p.h", "jsonfieldpage.h",
|
"jsonfieldpage.cpp", "jsonfieldpage_p.h", "jsonfieldpage.h",
|
||||||
"jsonfilepage.cpp", "jsonfilepage.h",
|
"jsonfilepage.cpp", "jsonfilepage.h",
|
||||||
"jsonkitspage.cpp", "jsonkitspage.h",
|
"jsonkitspage.cpp", "jsonkitspage.h",
|
||||||
"jsonprojectpage.cpp", "jsonprojectpage.h",
|
"jsonprojectpage.cpp", "jsonprojectpage.h",
|
||||||
"jsonsummarypage.cpp", "jsonsummarypage.h",
|
"jsonsummarypage.cpp", "jsonsummarypage.h",
|
||||||
"jsonwizard.cpp", "jsonwizard.h",
|
"jsonwizard.cpp", "jsonwizard.h",
|
||||||
"jsonwizardfactory.cpp", "jsonwizardfactory.h",
|
"jsonwizardfactory.cpp", "jsonwizardfactory.h",
|
||||||
"jsonwizardfilegenerator.cpp", "jsonwizardfilegenerator.h",
|
"jsonwizardfilegenerator.cpp", "jsonwizardfilegenerator.h",
|
||||||
"jsonwizardgeneratorfactory.cpp", "jsonwizardgeneratorfactory.h",
|
"jsonwizardgeneratorfactory.cpp", "jsonwizardgeneratorfactory.h",
|
||||||
"jsonwizardpagefactory.cpp", "jsonwizardpagefactory.h",
|
"jsonwizardpagefactory.cpp", "jsonwizardpagefactory.h",
|
||||||
"jsonwizardpagefactory_p.cpp", "jsonwizardpagefactory_p.h",
|
"jsonwizardpagefactory_p.cpp", "jsonwizardpagefactory_p.h",
|
||||||
"jsonwizardscannergenerator.cpp", "jsonwizardscannergenerator.h",
|
"jsonwizardscannergenerator.cpp", "jsonwizardscannergenerator.h",
|
||||||
"wizarddebug.h"
|
"wizarddebug.h"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "CustomWizard"
|
name: "CustomWizard"
|
||||||
prefix: "customwizard/"
|
prefix: "customwizard/"
|
||||||
files: [
|
files: [
|
||||||
"customwizard.cpp", "customwizard.h",
|
"customwizard.cpp", "customwizard.h",
|
||||||
"customwizardpage.cpp", "customwizardpage.h",
|
"customwizardpage.cpp", "customwizardpage.h",
|
||||||
"customwizardparameters.cpp", "customwizardparameters.h",
|
"customwizardparameters.cpp", "customwizardparameters.h",
|
||||||
"customwizardscriptgenerator.cpp", "customwizardscriptgenerator.h"
|
"customwizardscriptgenerator.cpp", "customwizardscriptgenerator.h"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "Device Support"
|
name: "Device Support"
|
||||||
prefix: "devicesupport/"
|
prefix: "devicesupport/"
|
||||||
files: [
|
files: [
|
||||||
"desktopdevice.cpp", "desktopdevice.h",
|
"desktopdevice.cpp", "desktopdevice.h",
|
||||||
"desktopdevicefactory.cpp", "desktopdevicefactory.h",
|
"desktopdevicefactory.cpp", "desktopdevicefactory.h",
|
||||||
"devicecheckbuildstep.cpp", "devicecheckbuildstep.h",
|
"devicecheckbuildstep.cpp", "devicecheckbuildstep.h",
|
||||||
"devicefactoryselectiondialog.cpp", "devicefactoryselectiondialog.h",
|
"devicefactoryselectiondialog.cpp", "devicefactoryselectiondialog.h",
|
||||||
"devicemanager.cpp", "devicemanager.h",
|
"devicemanager.cpp", "devicemanager.h",
|
||||||
"devicemanagermodel.cpp", "devicemanagermodel.h",
|
"devicemanagermodel.cpp", "devicemanagermodel.h",
|
||||||
"deviceprocessesdialog.cpp", "deviceprocessesdialog.h",
|
"deviceprocessesdialog.cpp", "deviceprocessesdialog.h",
|
||||||
"devicesettingspage.cpp", "devicesettingspage.h",
|
"devicesettingspage.cpp", "devicesettingspage.h",
|
||||||
"devicetestdialog.cpp", "devicetestdialog.h",
|
"devicetestdialog.cpp", "devicetestdialog.h",
|
||||||
"deviceusedportsgatherer.cpp", "deviceusedportsgatherer.h",
|
"deviceusedportsgatherer.cpp", "deviceusedportsgatherer.h",
|
||||||
"filetransfer.cpp", "filetransfer.h",
|
"filetransfer.cpp", "filetransfer.h",
|
||||||
"filetransferinterface.h",
|
"filetransferinterface.h",
|
||||||
"idevice.cpp", "idevice.h",
|
"idevice.cpp", "idevice.h",
|
||||||
"idevicefactory.cpp", "idevicefactory.h",
|
"idevicefactory.cpp", "idevicefactory.h",
|
||||||
"idevicefwd.h",
|
"idevicefwd.h",
|
||||||
"idevicewidget.h",
|
"idevicewidget.h",
|
||||||
"processlist.cpp", "processlist.h",
|
"processlist.cpp", "processlist.h",
|
||||||
"sshparameters.cpp", "sshparameters.h",
|
"sshparameters.cpp", "sshparameters.h",
|
||||||
"sshsettings.cpp", "sshsettings.h",
|
"sshsettings.cpp", "sshsettings.h",
|
||||||
"sshsettingspage.cpp", "sshsettingspage.h",
|
"sshsettingspage.cpp", "sshsettingspage.h",
|
||||||
"desktopprocesssignaloperation.cpp", "desktopprocesssignaloperation.h"
|
"desktopprocesssignaloperation.cpp", "desktopprocesssignaloperation.h"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "Images"
|
name: "Images"
|
||||||
prefix: "images/"
|
prefix: "images/"
|
||||||
files: ["*.png"]
|
files: ["*.png"]
|
||||||
}
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "WindowsToolChains"
|
name: "WindowsToolChains"
|
||||||
condition: qbs.targetOS.contains("windows") || qtc.testsEnabled
|
condition: qbs.targetOS.contains("windows") || qtc.testsEnabled
|
||||||
files: [
|
files: [
|
||||||
"msvctoolchain.cpp",
|
"msvctoolchain.cpp",
|
||||||
"msvctoolchain.h",
|
"msvctoolchain.h",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
QtcTestFiles {
|
QtcTestFiles {
|
||||||
files: ["outputparser_test.h", "outputparser_test.cpp"]
|
files: ["outputparser_test.h", "outputparser_test.cpp"]
|
||||||
}
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "Test resources"
|
name: "Test resources"
|
||||||
condition: qtc.testsEnabled
|
condition: qtc.testsEnabled
|
||||||
files: ["testdata/**"]
|
files: ["testdata/**"]
|
||||||
fileTags: ["qt.core.resource_data"]
|
fileTags: ["qt.core.resource_data"]
|
||||||
Qt.core.resourcePrefix: "/projectexplorer"
|
Qt.core.resourcePrefix: "/projectexplorer"
|
||||||
Qt.core.resourceSourceBase: path
|
Qt.core.resourceSourceBase: path
|
||||||
}
|
}
|
||||||
|
|
||||||
Export {
|
Export {
|
||||||
Depends { name: "Qt.network" }
|
Depends { name: "Qt.network" }
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,85 +1,81 @@
|
|||||||
import qbs 1.0
|
QtcPlugin {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "QmakeProjectManager"
|
name: "QmakeProjectManager"
|
||||||
|
|
||||||
QtcPlugin {
|
Depends { name: "Qt"; submodules: ["widgets", "network"] }
|
||||||
Depends { name: "Qt"; submodules: ["widgets", "network"] }
|
Depends { name: "QmlJS" }
|
||||||
Depends { name: "QmlJS" }
|
Depends { name: "Utils" }
|
||||||
Depends { name: "Utils" }
|
|
||||||
|
|
||||||
Depends { name: "Core" }
|
Depends { name: "Core" }
|
||||||
Depends { name: "ProjectExplorer" }
|
Depends { name: "ProjectExplorer" }
|
||||||
|
Depends { name: "QtSupport" }
|
||||||
|
Depends { name: "CppEditor" }
|
||||||
|
Depends { name: "TextEditor" }
|
||||||
|
Depends { name: "ResourceEditor" }
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "General"
|
||||||
|
files: [
|
||||||
|
"addlibrarywizard.cpp", "addlibrarywizard.h",
|
||||||
|
"librarydetailscontroller.cpp", "librarydetailscontroller.h",
|
||||||
|
"makefileparse.cpp", "makefileparse.h",
|
||||||
|
"profilecompletionassist.cpp", "profilecompletionassist.h",
|
||||||
|
"profileeditor.cpp", "profileeditor.h",
|
||||||
|
"profilehighlighter.cpp", "profilehighlighter.h",
|
||||||
|
"profilehoverhandler.cpp", "profilehoverhandler.h",
|
||||||
|
"qmakebuildinfo.h",
|
||||||
|
"qmakekitaspect.cpp", "qmakekitaspect.h",
|
||||||
|
"qmakemakestep.cpp", "qmakemakestep.h",
|
||||||
|
"qmakeparser.cpp", "qmakeparser.h",
|
||||||
|
"qmakeparsernodes.cpp", "qmakeparsernodes.h",
|
||||||
|
"qmakeprojectimporter.cpp", "qmakeprojectimporter.h",
|
||||||
|
"qmakesettings.cpp", "qmakesettings.h",
|
||||||
|
"qmakestep.cpp", "qmakestep.h",
|
||||||
|
"qmakebuildconfiguration.cpp", "qmakebuildconfiguration.h",
|
||||||
|
"qmakenodes.cpp", "qmakenodes.h",
|
||||||
|
"qmakenodetreebuilder.cpp", "qmakenodetreebuilder.h",
|
||||||
|
"qmakeproject.cpp", "qmakeproject.h",
|
||||||
|
"qmakeprojectmanager.qrc",
|
||||||
|
"qmakeprojectmanager_global.h", "qmakeprojectmanagertr.h",
|
||||||
|
"qmakeprojectmanagerconstants.h",
|
||||||
|
"qmakeprojectmanagerplugin.cpp", "qmakeprojectmanagerplugin.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Custom Widget Wizard"
|
||||||
|
prefix: "customwidgetwizard/"
|
||||||
|
files: [
|
||||||
|
"classdefinition.cpp", "classdefinition.h",
|
||||||
|
"classlist.cpp", "classlist.h",
|
||||||
|
"customwidgetpluginwizardpage.cpp", "customwidgetpluginwizardpage.h",
|
||||||
|
"customwidgetwidgetswizardpage.cpp", "customwidgetwidgetswizardpage.h",
|
||||||
|
"customwidgetwizard.cpp", "customwidgetwizard.h",
|
||||||
|
"customwidgetwizarddialog.cpp", "customwidgetwizarddialog.h",
|
||||||
|
"filenamingparameters.h",
|
||||||
|
"plugingenerator.cpp", "plugingenerator.h",
|
||||||
|
"pluginoptions.h"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Wizards"
|
||||||
|
prefix: "wizards/"
|
||||||
|
files: [
|
||||||
|
"qtprojectparameters.cpp", "qtprojectparameters.h",
|
||||||
|
"qtwizard.cpp", "qtwizard.h",
|
||||||
|
"subdirsprojectwizard.cpp", "subdirsprojectwizard.h",
|
||||||
|
"subdirsprojectwizarddialog.cpp", "subdirsprojectwizarddialog.h",
|
||||||
|
"wizards.qrc"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Wizard Images"
|
||||||
|
prefix: "wizards/images/"
|
||||||
|
files: ["*.png"]
|
||||||
|
}
|
||||||
|
|
||||||
|
Export {
|
||||||
Depends { name: "QtSupport" }
|
Depends { name: "QtSupport" }
|
||||||
Depends { name: "CppEditor" }
|
|
||||||
Depends { name: "TextEditor" }
|
|
||||||
Depends { name: "ResourceEditor" }
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "General"
|
|
||||||
files: [
|
|
||||||
"addlibrarywizard.cpp", "addlibrarywizard.h",
|
|
||||||
"librarydetailscontroller.cpp", "librarydetailscontroller.h",
|
|
||||||
"makefileparse.cpp", "makefileparse.h",
|
|
||||||
"profilecompletionassist.cpp", "profilecompletionassist.h",
|
|
||||||
"profileeditor.cpp", "profileeditor.h",
|
|
||||||
"profilehighlighter.cpp", "profilehighlighter.h",
|
|
||||||
"profilehoverhandler.cpp", "profilehoverhandler.h",
|
|
||||||
"qmakebuildinfo.h",
|
|
||||||
"qmakekitaspect.cpp", "qmakekitaspect.h",
|
|
||||||
"qmakemakestep.cpp", "qmakemakestep.h",
|
|
||||||
"qmakeparser.cpp", "qmakeparser.h",
|
|
||||||
"qmakeparsernodes.cpp", "qmakeparsernodes.h",
|
|
||||||
"qmakeprojectimporter.cpp", "qmakeprojectimporter.h",
|
|
||||||
"qmakesettings.cpp", "qmakesettings.h",
|
|
||||||
"qmakestep.cpp", "qmakestep.h",
|
|
||||||
"qmakebuildconfiguration.cpp", "qmakebuildconfiguration.h",
|
|
||||||
"qmakenodes.cpp", "qmakenodes.h",
|
|
||||||
"qmakenodetreebuilder.cpp", "qmakenodetreebuilder.h",
|
|
||||||
"qmakeproject.cpp", "qmakeproject.h",
|
|
||||||
"qmakeprojectmanager.qrc",
|
|
||||||
"qmakeprojectmanager_global.h", "qmakeprojectmanagertr.h",
|
|
||||||
"qmakeprojectmanagerconstants.h",
|
|
||||||
"qmakeprojectmanagerplugin.cpp", "qmakeprojectmanagerplugin.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Custom Widget Wizard"
|
|
||||||
prefix: "customwidgetwizard/"
|
|
||||||
files: [
|
|
||||||
"classdefinition.cpp", "classdefinition.h",
|
|
||||||
"classlist.cpp", "classlist.h",
|
|
||||||
"customwidgetpluginwizardpage.cpp", "customwidgetpluginwizardpage.h",
|
|
||||||
"customwidgetwidgetswizardpage.cpp", "customwidgetwidgetswizardpage.h",
|
|
||||||
"customwidgetwizard.cpp", "customwidgetwizard.h",
|
|
||||||
"customwidgetwizarddialog.cpp", "customwidgetwizarddialog.h",
|
|
||||||
"filenamingparameters.h",
|
|
||||||
"plugingenerator.cpp", "plugingenerator.h",
|
|
||||||
"pluginoptions.h"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Wizards"
|
|
||||||
prefix: "wizards/"
|
|
||||||
files: [
|
|
||||||
"qtprojectparameters.cpp", "qtprojectparameters.h",
|
|
||||||
"qtwizard.cpp", "qtwizard.h",
|
|
||||||
"subdirsprojectwizard.cpp", "subdirsprojectwizard.h",
|
|
||||||
"subdirsprojectwizarddialog.cpp", "subdirsprojectwizarddialog.h",
|
|
||||||
"wizards.qrc"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Wizard Images"
|
|
||||||
prefix: "wizards/images/"
|
|
||||||
files: ["*.png"]
|
|
||||||
}
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "QtSupport" }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,122 +1,118 @@
|
|||||||
import qbs 1.0
|
QtcPlugin {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "QtSupport"
|
name: "QtSupport"
|
||||||
|
|
||||||
QtcPlugin {
|
Depends { name: "Qt"; submodules: ["widgets", "xml"]; }
|
||||||
Depends { name: "Qt"; submodules: ["widgets", "xml"]; }
|
Depends { name: "Utils" }
|
||||||
Depends { name: "Utils" }
|
|
||||||
|
|
||||||
Depends { name: "Core" }
|
Depends { name: "Core" }
|
||||||
|
Depends { name: "ProParser" }
|
||||||
|
Depends { name: "ProjectExplorer" }
|
||||||
|
Depends { name: "ResourceEditor" }
|
||||||
|
|
||||||
|
cpp.defines: base.concat([
|
||||||
|
"QMAKE_LIBRARY",
|
||||||
|
"QMAKE_BUILTIN_PRFS",
|
||||||
|
])
|
||||||
|
Properties {
|
||||||
|
condition: qbs.targetOS.contains("windows")
|
||||||
|
cpp.dynamicLibraries: "advapi32"
|
||||||
|
}
|
||||||
|
|
||||||
|
Export {
|
||||||
Depends { name: "ProParser" }
|
Depends { name: "ProParser" }
|
||||||
Depends { name: "ProjectExplorer" }
|
}
|
||||||
Depends { name: "ResourceEditor" }
|
|
||||||
|
|
||||||
cpp.defines: base.concat([
|
|
||||||
"QMAKE_LIBRARY",
|
|
||||||
"QMAKE_BUILTIN_PRFS",
|
|
||||||
])
|
|
||||||
Properties {
|
|
||||||
condition: qbs.targetOS.contains("windows")
|
|
||||||
cpp.dynamicLibraries: "advapi32"
|
|
||||||
}
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "ProParser" }
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "Pro Parser"
|
|
||||||
prefix: project.sharedSourcesDir + "/proparser/"
|
|
||||||
files: [
|
|
||||||
"ioutils.cpp",
|
|
||||||
"ioutils.h",
|
|
||||||
"profileevaluator.cpp",
|
|
||||||
"profileevaluator.h",
|
|
||||||
"proitems.cpp",
|
|
||||||
"proitems.h",
|
|
||||||
"proparser.qrc",
|
|
||||||
"prowriter.cpp",
|
|
||||||
"prowriter.h",
|
|
||||||
"qmake_global.h",
|
|
||||||
"qmakebuiltins.cpp",
|
|
||||||
"qmakeevaluator.cpp",
|
|
||||||
"qmakeevaluator.h",
|
|
||||||
"qmakeevaluator_p.h",
|
|
||||||
"qmakeglobals.cpp",
|
|
||||||
"qmakeglobals.h",
|
|
||||||
"qmakeparser.cpp",
|
|
||||||
"qmakeparser.h",
|
|
||||||
"qmakevfs.cpp",
|
|
||||||
"qmakevfs.h",
|
|
||||||
"registry.cpp",
|
|
||||||
"registry_p.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Pro Parser"
|
||||||
|
prefix: project.sharedSourcesDir + "/proparser/"
|
||||||
files: [
|
files: [
|
||||||
"baseqtversion.cpp",
|
"ioutils.cpp",
|
||||||
"baseqtversion.h",
|
"ioutils.h",
|
||||||
"codegenerator.cpp",
|
"profileevaluator.cpp",
|
||||||
"codegenerator.h",
|
"profileevaluator.h",
|
||||||
"codegensettings.cpp",
|
"proitems.cpp",
|
||||||
"codegensettings.h",
|
"proitems.h",
|
||||||
"externaleditors.cpp",
|
"proparser.qrc",
|
||||||
"externaleditors.h",
|
"prowriter.cpp",
|
||||||
"qtbuildaspects.cpp",
|
"prowriter.h",
|
||||||
"qtbuildaspects.h",
|
"qmake_global.h",
|
||||||
"qtconfigwidget.cpp",
|
"qmakebuiltins.cpp",
|
||||||
"qtconfigwidget.h",
|
"qmakeevaluator.cpp",
|
||||||
"qtcppkitinfo.cpp",
|
"qmakeevaluator.h",
|
||||||
"qtcppkitinfo.h",
|
"qmakeevaluator_p.h",
|
||||||
"qtprojectimporter.cpp",
|
"qmakeglobals.cpp",
|
||||||
"qtprojectimporter.h",
|
"qmakeglobals.h",
|
||||||
"qtsupport.qrc",
|
"qmakeparser.cpp",
|
||||||
"exampleslistmodel.cpp",
|
"qmakeparser.h",
|
||||||
"exampleslistmodel.h",
|
"qmakevfs.cpp",
|
||||||
"examplesparser.cpp",
|
"qmakevfs.h",
|
||||||
"examplesparser.h",
|
"registry.cpp",
|
||||||
"profilereader.cpp",
|
"registry_p.h",
|
||||||
"profilereader.h",
|
|
||||||
"qscxmlcgenerator.cpp",
|
|
||||||
"qscxmlcgenerator.h",
|
|
||||||
"qtkitaspect.cpp",
|
|
||||||
"qtkitaspect.h",
|
|
||||||
"qtoptionspage.cpp",
|
|
||||||
"qtoptionspage.h",
|
|
||||||
"qtoutputformatter.cpp",
|
|
||||||
"qtoutputformatter.h",
|
|
||||||
"qtparser.cpp",
|
|
||||||
"qtparser.h",
|
|
||||||
"qtsupport_global.h", "qtsupporttr.h",
|
|
||||||
"qtsupportconstants.h",
|
|
||||||
"qtsupportplugin.cpp",
|
|
||||||
"qtsupportplugin.h",
|
|
||||||
"qttestparser.cpp",
|
|
||||||
"qttestparser.h",
|
|
||||||
"qtversionfactory.h",
|
|
||||||
"qtversionmanager.cpp",
|
|
||||||
"qtversionmanager.h",
|
|
||||||
"translationwizardpage.cpp",
|
|
||||||
"translationwizardpage.h",
|
|
||||||
"uicgenerator.cpp",
|
|
||||||
"uicgenerator.h",
|
|
||||||
]
|
]
|
||||||
|
}
|
||||||
|
|
||||||
Group {
|
files: [
|
||||||
name: "QtVersion"
|
"baseqtversion.cpp",
|
||||||
files: [
|
"baseqtversion.h",
|
||||||
"qtversions.cpp",
|
"codegenerator.cpp",
|
||||||
"qtversions.h",
|
"codegenerator.h",
|
||||||
]
|
"codegensettings.cpp",
|
||||||
}
|
"codegensettings.h",
|
||||||
|
"externaleditors.cpp",
|
||||||
|
"externaleditors.h",
|
||||||
|
"qtbuildaspects.cpp",
|
||||||
|
"qtbuildaspects.h",
|
||||||
|
"qtconfigwidget.cpp",
|
||||||
|
"qtconfigwidget.h",
|
||||||
|
"qtcppkitinfo.cpp",
|
||||||
|
"qtcppkitinfo.h",
|
||||||
|
"qtprojectimporter.cpp",
|
||||||
|
"qtprojectimporter.h",
|
||||||
|
"qtsupport.qrc",
|
||||||
|
"exampleslistmodel.cpp",
|
||||||
|
"exampleslistmodel.h",
|
||||||
|
"examplesparser.cpp",
|
||||||
|
"examplesparser.h",
|
||||||
|
"profilereader.cpp",
|
||||||
|
"profilereader.h",
|
||||||
|
"qscxmlcgenerator.cpp",
|
||||||
|
"qscxmlcgenerator.h",
|
||||||
|
"qtkitaspect.cpp",
|
||||||
|
"qtkitaspect.h",
|
||||||
|
"qtoptionspage.cpp",
|
||||||
|
"qtoptionspage.h",
|
||||||
|
"qtoutputformatter.cpp",
|
||||||
|
"qtoutputformatter.h",
|
||||||
|
"qtparser.cpp",
|
||||||
|
"qtparser.h",
|
||||||
|
"qtsupport_global.h", "qtsupporttr.h",
|
||||||
|
"qtsupportconstants.h",
|
||||||
|
"qtsupportplugin.cpp",
|
||||||
|
"qtsupportplugin.h",
|
||||||
|
"qttestparser.cpp",
|
||||||
|
"qttestparser.h",
|
||||||
|
"qtversionfactory.h",
|
||||||
|
"qtversionmanager.cpp",
|
||||||
|
"qtversionmanager.h",
|
||||||
|
"translationwizardpage.cpp",
|
||||||
|
"translationwizardpage.h",
|
||||||
|
"uicgenerator.cpp",
|
||||||
|
"uicgenerator.h",
|
||||||
|
]
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "Getting Started Welcome Page"
|
name: "QtVersion"
|
||||||
files: [
|
files: [
|
||||||
"gettingstartedwelcomepage.cpp",
|
"qtversions.cpp",
|
||||||
"gettingstartedwelcomepage.h"
|
"qtversions.h",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "Getting Started Welcome Page"
|
||||||
|
files: [
|
||||||
|
"gettingstartedwelcomepage.cpp",
|
||||||
|
"gettingstartedwelcomepage.h"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,78 +1,74 @@
|
|||||||
import qbs 1.0
|
QtcPlugin {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "RemoteLinux"
|
name: "RemoteLinux"
|
||||||
|
|
||||||
QtcPlugin {
|
Depends { name: "Qt.widgets" }
|
||||||
Depends { name: "Qt.widgets" }
|
Depends { name: "QmlDebug" }
|
||||||
Depends { name: "QmlDebug" }
|
Depends { name: "Utils" }
|
||||||
Depends { name: "Utils" }
|
|
||||||
|
|
||||||
Depends { name: "Core" }
|
Depends { name: "Core" }
|
||||||
Depends { name: "Debugger" }
|
Depends { name: "Debugger" }
|
||||||
Depends { name: "ProjectExplorer" }
|
Depends { name: "ProjectExplorer" }
|
||||||
|
|
||||||
|
files: [
|
||||||
|
"abstractremotelinuxdeploystep.cpp",
|
||||||
|
"abstractremotelinuxdeploystep.h",
|
||||||
|
"deploymenttimeinfo.cpp",
|
||||||
|
"deploymenttimeinfo.h",
|
||||||
|
"customcommanddeploystep.cpp",
|
||||||
|
"customcommanddeploystep.h",
|
||||||
|
"genericdirectuploadstep.cpp",
|
||||||
|
"genericdirectuploadstep.h",
|
||||||
|
"genericlinuxdeviceconfigurationwidget.cpp",
|
||||||
|
"genericlinuxdeviceconfigurationwidget.h",
|
||||||
|
"killappstep.cpp",
|
||||||
|
"killappstep.h",
|
||||||
|
"linuxdevice.cpp",
|
||||||
|
"linuxdevice.h",
|
||||||
|
"linuxdevicetester.cpp",
|
||||||
|
"linuxdevicetester.h",
|
||||||
|
"linuxprocessinterface.h",
|
||||||
|
"makeinstallstep.cpp",
|
||||||
|
"makeinstallstep.h",
|
||||||
|
"publickeydeploymentdialog.cpp",
|
||||||
|
"publickeydeploymentdialog.h",
|
||||||
|
"remotelinux.qrc",
|
||||||
|
"remotelinux_constants.h",
|
||||||
|
"remotelinux_export.h",
|
||||||
|
"remotelinuxcustomrunconfiguration.cpp",
|
||||||
|
"remotelinuxcustomrunconfiguration.h",
|
||||||
|
"remotelinuxdebugsupport.cpp",
|
||||||
|
"remotelinuxdebugsupport.h",
|
||||||
|
"remotelinuxenvironmentaspect.cpp",
|
||||||
|
"remotelinuxenvironmentaspect.h",
|
||||||
|
"remotelinuxplugin.cpp",
|
||||||
|
"remotelinuxplugin.h",
|
||||||
|
"remotelinuxrunconfiguration.cpp",
|
||||||
|
"remotelinuxrunconfiguration.h",
|
||||||
|
"remotelinuxsignaloperation.cpp",
|
||||||
|
"remotelinuxsignaloperation.h",
|
||||||
|
"remotelinuxtr.h",
|
||||||
|
"rsyncdeploystep.cpp",
|
||||||
|
"rsyncdeploystep.h",
|
||||||
|
"sshdevicewizard.cpp",
|
||||||
|
"sshdevicewizard.h",
|
||||||
|
"sshkeycreationdialog.cpp",
|
||||||
|
"sshkeycreationdialog.h",
|
||||||
|
"tarpackagecreationstep.cpp",
|
||||||
|
"tarpackagecreationstep.h",
|
||||||
|
"tarpackagedeploystep.cpp",
|
||||||
|
"tarpackagedeploystep.h",
|
||||||
|
"images/embeddedtarget.png",
|
||||||
|
]
|
||||||
|
|
||||||
|
QtcTestFiles {
|
||||||
files: [
|
files: [
|
||||||
"abstractremotelinuxdeploystep.cpp",
|
"filesystemaccess_test.cpp",
|
||||||
"abstractremotelinuxdeploystep.h",
|
"filesystemaccess_test.h",
|
||||||
"deploymenttimeinfo.cpp",
|
|
||||||
"deploymenttimeinfo.h",
|
|
||||||
"customcommanddeploystep.cpp",
|
|
||||||
"customcommanddeploystep.h",
|
|
||||||
"genericdirectuploadstep.cpp",
|
|
||||||
"genericdirectuploadstep.h",
|
|
||||||
"genericlinuxdeviceconfigurationwidget.cpp",
|
|
||||||
"genericlinuxdeviceconfigurationwidget.h",
|
|
||||||
"killappstep.cpp",
|
|
||||||
"killappstep.h",
|
|
||||||
"linuxdevice.cpp",
|
|
||||||
"linuxdevice.h",
|
|
||||||
"linuxdevicetester.cpp",
|
|
||||||
"linuxdevicetester.h",
|
|
||||||
"linuxprocessinterface.h",
|
|
||||||
"makeinstallstep.cpp",
|
|
||||||
"makeinstallstep.h",
|
|
||||||
"publickeydeploymentdialog.cpp",
|
|
||||||
"publickeydeploymentdialog.h",
|
|
||||||
"remotelinux.qrc",
|
|
||||||
"remotelinux_constants.h",
|
|
||||||
"remotelinux_export.h",
|
|
||||||
"remotelinuxcustomrunconfiguration.cpp",
|
|
||||||
"remotelinuxcustomrunconfiguration.h",
|
|
||||||
"remotelinuxdebugsupport.cpp",
|
|
||||||
"remotelinuxdebugsupport.h",
|
|
||||||
"remotelinuxenvironmentaspect.cpp",
|
|
||||||
"remotelinuxenvironmentaspect.h",
|
|
||||||
"remotelinuxplugin.cpp",
|
|
||||||
"remotelinuxplugin.h",
|
|
||||||
"remotelinuxrunconfiguration.cpp",
|
|
||||||
"remotelinuxrunconfiguration.h",
|
|
||||||
"remotelinuxsignaloperation.cpp",
|
|
||||||
"remotelinuxsignaloperation.h",
|
|
||||||
"remotelinuxtr.h",
|
|
||||||
"rsyncdeploystep.cpp",
|
|
||||||
"rsyncdeploystep.h",
|
|
||||||
"sshdevicewizard.cpp",
|
|
||||||
"sshdevicewizard.h",
|
|
||||||
"sshkeycreationdialog.cpp",
|
|
||||||
"sshkeycreationdialog.h",
|
|
||||||
"tarpackagecreationstep.cpp",
|
|
||||||
"tarpackagecreationstep.h",
|
|
||||||
"tarpackagedeploystep.cpp",
|
|
||||||
"tarpackagedeploystep.h",
|
|
||||||
"images/embeddedtarget.png",
|
|
||||||
]
|
]
|
||||||
|
}
|
||||||
|
|
||||||
QtcTestFiles {
|
Export {
|
||||||
files: [
|
Depends { name: "Debugger" }
|
||||||
"filesystemaccess_test.cpp",
|
Depends { name: "Core" }
|
||||||
"filesystemaccess_test.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Export {
|
|
||||||
Depends { name: "Debugger" }
|
|
||||||
Depends { name: "Core" }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,39 +1,36 @@
|
|||||||
import qbs 1.0
|
QtcPlugin {
|
||||||
|
|
||||||
Project {
|
|
||||||
name: "ResourceEditor"
|
name: "ResourceEditor"
|
||||||
|
|
||||||
QtcPlugin {
|
Depends { name: "Qt"; submodules: ["widgets", "xml"] }
|
||||||
Depends { name: "Qt"; submodules: ["widgets", "xml"] }
|
|
||||||
Depends { name: "Aggregation" }
|
|
||||||
Depends { name: "ProjectExplorer" }
|
|
||||||
Depends { name: "Utils" }
|
|
||||||
|
|
||||||
Depends { name: "Core" }
|
Depends { name: "Aggregation" }
|
||||||
|
Depends { name: "Utils" }
|
||||||
|
|
||||||
cpp.defines: base.concat(["RESOURCEEDITOR_LIBRARY"])
|
Depends { name: "Core" }
|
||||||
|
Depends { name: "ProjectExplorer" }
|
||||||
|
|
||||||
Group {
|
cpp.defines: base.concat(["RESOURCEEDITOR_LIBRARY"])
|
||||||
name: "General"
|
|
||||||
files: [
|
|
||||||
"resourceeditorconstants.h",
|
|
||||||
"resourceeditorfactory.cpp", "resourceeditorfactory.h",
|
|
||||||
"resourceeditorplugin.cpp", "resourceeditorplugin.h",
|
|
||||||
"resourceeditortr.h",
|
|
||||||
"resourceeditorw.cpp", "resourceeditorw.h",
|
|
||||||
"resource_global.h", "resourcenode.cpp", "resourcenode.h"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "QRC Editor"
|
name: "General"
|
||||||
prefix: "qrceditor/"
|
files: [
|
||||||
files: [
|
"resourceeditorconstants.h",
|
||||||
"qrceditor.cpp", "qrceditor.h",
|
"resourceeditorfactory.cpp", "resourceeditorfactory.h",
|
||||||
"resourcefile.cpp", "resourcefile_p.h",
|
"resourceeditorplugin.cpp", "resourceeditorplugin.h",
|
||||||
"resourceview.cpp", "resourceview.h",
|
"resourceeditortr.h",
|
||||||
"undocommands.cpp", "undocommands_p.h",
|
"resourceeditorw.cpp", "resourceeditorw.h",
|
||||||
]
|
"resource_global.h", "resourcenode.cpp", "resourcenode.h"
|
||||||
}
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "QRC Editor"
|
||||||
|
prefix: "qrceditor/"
|
||||||
|
files: [
|
||||||
|
"qrceditor.cpp", "qrceditor.h",
|
||||||
|
"resourcefile.cpp", "resourcefile_p.h",
|
||||||
|
"resourceview.cpp", "resourceview.h",
|
||||||
|
"undocommands.cpp", "undocommands_p.h",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,237 +1,234 @@
|
|||||||
import qbs 1.0
|
|
||||||
import qbs.FileInfo
|
import qbs.FileInfo
|
||||||
import qbs.Environment
|
import qbs.Environment
|
||||||
|
|
||||||
Project {
|
QtcPlugin {
|
||||||
name: "TextEditor"
|
name: "TextEditor"
|
||||||
|
|
||||||
QtcPlugin {
|
Depends { name: "Qt"; submodules: ["widgets", "xml", "network", "printsupport"] }
|
||||||
Depends { name: "Qt"; submodules: ["widgets", "xml", "network", "printsupport"] }
|
Depends { name: "Aggregation" }
|
||||||
Depends { name: "Aggregation" }
|
Depends { name: "Utils" }
|
||||||
Depends { name: "Utils" }
|
Depends { name: "KSyntaxHighlighting" }
|
||||||
|
|
||||||
|
Export {
|
||||||
Depends { name: "KSyntaxHighlighting" }
|
Depends { name: "KSyntaxHighlighting" }
|
||||||
|
}
|
||||||
|
|
||||||
Export {
|
Depends { name: "Core" }
|
||||||
Depends { name: "KSyntaxHighlighting" }
|
|
||||||
}
|
|
||||||
|
|
||||||
Depends { name: "Core" }
|
cpp.enableExceptions: true
|
||||||
|
|
||||||
cpp.enableExceptions: true
|
files: [
|
||||||
|
"autocompleter.cpp",
|
||||||
|
"autocompleter.h",
|
||||||
|
"basefilefind.cpp",
|
||||||
|
"basefilefind.h",
|
||||||
|
"basehoverhandler.cpp",
|
||||||
|
"basehoverhandler.h",
|
||||||
|
"behaviorsettings.cpp",
|
||||||
|
"behaviorsettings.h",
|
||||||
|
"behaviorsettingspage.cpp",
|
||||||
|
"behaviorsettingspage.h",
|
||||||
|
"behaviorsettingswidget.cpp",
|
||||||
|
"behaviorsettingswidget.h",
|
||||||
|
"blockrange.h",
|
||||||
|
"circularclipboard.cpp",
|
||||||
|
"circularclipboard.h",
|
||||||
|
"circularclipboardassist.cpp",
|
||||||
|
"circularclipboardassist.h",
|
||||||
|
"codecchooser.cpp",
|
||||||
|
"codecchooser.h",
|
||||||
|
"codestyleeditor.cpp",
|
||||||
|
"codestyleeditor.h",
|
||||||
|
"codestylepool.cpp",
|
||||||
|
"codestylepool.h",
|
||||||
|
"codestyleselectorwidget.cpp",
|
||||||
|
"codestyleselectorwidget.h",
|
||||||
|
"colorpreviewhoverhandler.cpp",
|
||||||
|
"colorpreviewhoverhandler.h",
|
||||||
|
"colorscheme.cpp",
|
||||||
|
"colorscheme.h",
|
||||||
|
"colorschemeedit.cpp",
|
||||||
|
"colorschemeedit.h",
|
||||||
|
"command.cpp",
|
||||||
|
"command.h",
|
||||||
|
"commentssettings.cpp",
|
||||||
|
"commentssettings.h",
|
||||||
|
"completionsettings.cpp",
|
||||||
|
"completionsettings.h",
|
||||||
|
"completionsettingspage.cpp",
|
||||||
|
"completionsettingspage.h",
|
||||||
|
"displaysettings.cpp",
|
||||||
|
"displaysettings.h",
|
||||||
|
"displaysettingspage.cpp",
|
||||||
|
"displaysettingspage.h",
|
||||||
|
"extraencodingsettings.cpp",
|
||||||
|
"extraencodingsettings.h",
|
||||||
|
"findincurrentfile.cpp",
|
||||||
|
"findincurrentfile.h",
|
||||||
|
"findinfiles.cpp",
|
||||||
|
"findinfiles.h",
|
||||||
|
"findinopenfiles.cpp",
|
||||||
|
"findinopenfiles.h",
|
||||||
|
"fontsettings.cpp",
|
||||||
|
"fontsettings.h",
|
||||||
|
"fontsettingspage.cpp",
|
||||||
|
"fontsettingspage.h",
|
||||||
|
"formatter.h",
|
||||||
|
"formattexteditor.cpp",
|
||||||
|
"formattexteditor.h",
|
||||||
|
"highlighter.cpp",
|
||||||
|
"highlighter.h",
|
||||||
|
"highlightersettings.cpp",
|
||||||
|
"highlightersettings.h",
|
||||||
|
"highlightersettingspage.cpp",
|
||||||
|
"highlightersettingspage.h",
|
||||||
|
"icodestylepreferences.cpp",
|
||||||
|
"icodestylepreferences.h",
|
||||||
|
"icodestylepreferencesfactory.cpp",
|
||||||
|
"icodestylepreferencesfactory.h",
|
||||||
|
"indenter.h",
|
||||||
|
"ioutlinewidget.h",
|
||||||
|
"jsoneditor.cpp",
|
||||||
|
"jsoneditor.h",
|
||||||
|
"linenumberfilter.cpp",
|
||||||
|
"linenumberfilter.h",
|
||||||
|
"marginsettings.cpp",
|
||||||
|
"marginsettings.h",
|
||||||
|
"markdowneditor.cpp",
|
||||||
|
"markdowneditor.h",
|
||||||
|
"outlinefactory.cpp",
|
||||||
|
"outlinefactory.h",
|
||||||
|
"plaintexteditorfactory.cpp",
|
||||||
|
"plaintexteditorfactory.h",
|
||||||
|
"quickfix.cpp",
|
||||||
|
"quickfix.h",
|
||||||
|
"refactoringchanges.cpp",
|
||||||
|
"refactoringchanges.h",
|
||||||
|
"refactoroverlay.cpp",
|
||||||
|
"refactoroverlay.h",
|
||||||
|
"semantichighlighter.cpp",
|
||||||
|
"semantichighlighter.h",
|
||||||
|
"simplecodestylepreferences.cpp",
|
||||||
|
"simplecodestylepreferences.h",
|
||||||
|
"simplecodestylepreferenceswidget.cpp",
|
||||||
|
"simplecodestylepreferenceswidget.h",
|
||||||
|
"storagesettings.cpp",
|
||||||
|
"storagesettings.h",
|
||||||
|
"syntaxhighlighter.cpp",
|
||||||
|
"syntaxhighlighter.h",
|
||||||
|
"tabsettings.cpp",
|
||||||
|
"tabsettings.h",
|
||||||
|
"tabsettingswidget.cpp",
|
||||||
|
"tabsettingswidget.h",
|
||||||
|
"textdocument.cpp",
|
||||||
|
"textdocument.h",
|
||||||
|
"textdocumentlayout.cpp",
|
||||||
|
"textdocumentlayout.h",
|
||||||
|
"texteditor.cpp",
|
||||||
|
"texteditor.h",
|
||||||
|
"texteditor.qrc",
|
||||||
|
"texteditor_global.h", "texteditortr.h",
|
||||||
|
"texteditor_p.h",
|
||||||
|
"texteditoractionhandler.cpp",
|
||||||
|
"texteditoractionhandler.h",
|
||||||
|
"texteditorconstants.cpp",
|
||||||
|
"texteditorconstants.h",
|
||||||
|
"texteditoroverlay.cpp",
|
||||||
|
"texteditoroverlay.h",
|
||||||
|
"texteditorplugin.cpp",
|
||||||
|
"texteditorplugin.h",
|
||||||
|
"texteditorsettings.cpp",
|
||||||
|
"texteditorsettings.h",
|
||||||
|
"textindenter.cpp",
|
||||||
|
"textindenter.h",
|
||||||
|
"textmark.cpp",
|
||||||
|
"textmark.h",
|
||||||
|
"textstyles.h",
|
||||||
|
"typingsettings.cpp",
|
||||||
|
"typingsettings.h",
|
||||||
|
]
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "CodeAssist"
|
||||||
|
prefix: "codeassist/"
|
||||||
files: [
|
files: [
|
||||||
"autocompleter.cpp",
|
"assistenums.h",
|
||||||
"autocompleter.h",
|
"assistinterface.cpp",
|
||||||
"basefilefind.cpp",
|
"assistinterface.h",
|
||||||
"basefilefind.h",
|
"assistproposalitem.cpp",
|
||||||
"basehoverhandler.cpp",
|
"assistproposalitem.h",
|
||||||
"basehoverhandler.h",
|
"assistproposaliteminterface.h",
|
||||||
"behaviorsettings.cpp",
|
"asyncprocessor.cpp",
|
||||||
"behaviorsettings.h",
|
"asyncprocessor.h",
|
||||||
"behaviorsettingspage.cpp",
|
"codeassistant.cpp",
|
||||||
"behaviorsettingspage.h",
|
"codeassistant.h",
|
||||||
"behaviorsettingswidget.cpp",
|
"completionassistprovider.cpp",
|
||||||
"behaviorsettingswidget.h",
|
"completionassistprovider.h",
|
||||||
"blockrange.h",
|
"documentcontentcompletion.cpp",
|
||||||
"circularclipboard.cpp",
|
"documentcontentcompletion.h",
|
||||||
"circularclipboard.h",
|
"functionhintproposal.cpp",
|
||||||
"circularclipboardassist.cpp",
|
"functionhintproposal.h",
|
||||||
"circularclipboardassist.h",
|
"functionhintproposalwidget.cpp",
|
||||||
"codecchooser.cpp",
|
"functionhintproposalwidget.h",
|
||||||
"codecchooser.h",
|
"genericproposal.cpp",
|
||||||
"codestyleeditor.cpp",
|
"genericproposal.h",
|
||||||
"codestyleeditor.h",
|
"genericproposalmodel.cpp",
|
||||||
"codestylepool.cpp",
|
"genericproposalmodel.h",
|
||||||
"codestylepool.h",
|
"genericproposalwidget.cpp",
|
||||||
"codestyleselectorwidget.cpp",
|
"genericproposalwidget.h",
|
||||||
"codestyleselectorwidget.h",
|
"iassistprocessor.cpp",
|
||||||
"colorpreviewhoverhandler.cpp",
|
"iassistprocessor.h",
|
||||||
"colorpreviewhoverhandler.h",
|
"iassistproposal.cpp",
|
||||||
"colorscheme.cpp",
|
"iassistproposal.h",
|
||||||
"colorscheme.h",
|
"iassistproposalmodel.cpp",
|
||||||
"colorschemeedit.cpp",
|
"iassistproposalmodel.h",
|
||||||
"colorschemeedit.h",
|
"iassistproposalwidget.cpp",
|
||||||
"command.cpp",
|
"iassistproposalwidget.h",
|
||||||
"command.h",
|
"iassistprovider.cpp",
|
||||||
"commentssettings.cpp",
|
"iassistprovider.h",
|
||||||
"commentssettings.h",
|
"ifunctionhintproposalmodel.cpp",
|
||||||
"completionsettings.cpp",
|
"ifunctionhintproposalmodel.h",
|
||||||
"completionsettings.h",
|
"keywordscompletionassist.cpp",
|
||||||
"completionsettingspage.cpp",
|
"keywordscompletionassist.h",
|
||||||
"completionsettingspage.h",
|
"textdocumentmanipulator.cpp",
|
||||||
"displaysettings.cpp",
|
"textdocumentmanipulator.h",
|
||||||
"displaysettings.h",
|
"textdocumentmanipulatorinterface.h",
|
||||||
"displaysettingspage.cpp",
|
|
||||||
"displaysettingspage.h",
|
|
||||||
"extraencodingsettings.cpp",
|
|
||||||
"extraencodingsettings.h",
|
|
||||||
"findincurrentfile.cpp",
|
|
||||||
"findincurrentfile.h",
|
|
||||||
"findinfiles.cpp",
|
|
||||||
"findinfiles.h",
|
|
||||||
"findinopenfiles.cpp",
|
|
||||||
"findinopenfiles.h",
|
|
||||||
"fontsettings.cpp",
|
|
||||||
"fontsettings.h",
|
|
||||||
"fontsettingspage.cpp",
|
|
||||||
"fontsettingspage.h",
|
|
||||||
"formatter.h",
|
|
||||||
"formattexteditor.cpp",
|
|
||||||
"formattexteditor.h",
|
|
||||||
"highlighter.cpp",
|
|
||||||
"highlighter.h",
|
|
||||||
"highlightersettings.cpp",
|
|
||||||
"highlightersettings.h",
|
|
||||||
"highlightersettingspage.cpp",
|
|
||||||
"highlightersettingspage.h",
|
|
||||||
"icodestylepreferences.cpp",
|
|
||||||
"icodestylepreferences.h",
|
|
||||||
"icodestylepreferencesfactory.cpp",
|
|
||||||
"icodestylepreferencesfactory.h",
|
|
||||||
"indenter.h",
|
|
||||||
"ioutlinewidget.h",
|
|
||||||
"jsoneditor.cpp",
|
|
||||||
"jsoneditor.h",
|
|
||||||
"linenumberfilter.cpp",
|
|
||||||
"linenumberfilter.h",
|
|
||||||
"marginsettings.cpp",
|
|
||||||
"marginsettings.h",
|
|
||||||
"markdowneditor.cpp",
|
|
||||||
"markdowneditor.h",
|
|
||||||
"outlinefactory.cpp",
|
|
||||||
"outlinefactory.h",
|
|
||||||
"plaintexteditorfactory.cpp",
|
|
||||||
"plaintexteditorfactory.h",
|
|
||||||
"quickfix.cpp",
|
|
||||||
"quickfix.h",
|
|
||||||
"refactoringchanges.cpp",
|
|
||||||
"refactoringchanges.h",
|
|
||||||
"refactoroverlay.cpp",
|
|
||||||
"refactoroverlay.h",
|
|
||||||
"semantichighlighter.cpp",
|
|
||||||
"semantichighlighter.h",
|
|
||||||
"simplecodestylepreferences.cpp",
|
|
||||||
"simplecodestylepreferences.h",
|
|
||||||
"simplecodestylepreferenceswidget.cpp",
|
|
||||||
"simplecodestylepreferenceswidget.h",
|
|
||||||
"storagesettings.cpp",
|
|
||||||
"storagesettings.h",
|
|
||||||
"syntaxhighlighter.cpp",
|
|
||||||
"syntaxhighlighter.h",
|
|
||||||
"tabsettings.cpp",
|
|
||||||
"tabsettings.h",
|
|
||||||
"tabsettingswidget.cpp",
|
|
||||||
"tabsettingswidget.h",
|
|
||||||
"textdocument.cpp",
|
|
||||||
"textdocument.h",
|
|
||||||
"textdocumentlayout.cpp",
|
|
||||||
"textdocumentlayout.h",
|
|
||||||
"texteditor.cpp",
|
|
||||||
"texteditor.h",
|
|
||||||
"texteditor.qrc",
|
|
||||||
"texteditor_global.h", "texteditortr.h",
|
|
||||||
"texteditor_p.h",
|
|
||||||
"texteditoractionhandler.cpp",
|
|
||||||
"texteditoractionhandler.h",
|
|
||||||
"texteditorconstants.cpp",
|
|
||||||
"texteditorconstants.h",
|
|
||||||
"texteditoroverlay.cpp",
|
|
||||||
"texteditoroverlay.h",
|
|
||||||
"texteditorplugin.cpp",
|
|
||||||
"texteditorplugin.h",
|
|
||||||
"texteditorsettings.cpp",
|
|
||||||
"texteditorsettings.h",
|
|
||||||
"textindenter.cpp",
|
|
||||||
"textindenter.h",
|
|
||||||
"textmark.cpp",
|
|
||||||
"textmark.h",
|
|
||||||
"textstyles.h",
|
|
||||||
"typingsettings.cpp",
|
|
||||||
"typingsettings.h",
|
|
||||||
]
|
]
|
||||||
|
}
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "CodeAssist"
|
name: "Snippets"
|
||||||
prefix: "codeassist/"
|
prefix: "snippets/"
|
||||||
files: [
|
files: [
|
||||||
"assistenums.h",
|
"reuse.h",
|
||||||
"assistinterface.cpp",
|
"snippet.cpp",
|
||||||
"assistinterface.h",
|
"snippet.h",
|
||||||
"assistproposalitem.cpp",
|
"snippetassistcollector.cpp",
|
||||||
"assistproposalitem.h",
|
"snippetassistcollector.h",
|
||||||
"assistproposaliteminterface.h",
|
"snippeteditor.cpp",
|
||||||
"asyncprocessor.cpp",
|
"snippeteditor.h",
|
||||||
"asyncprocessor.h",
|
"snippetoverlay.cpp",
|
||||||
"codeassistant.cpp",
|
"snippetoverlay.h",
|
||||||
"codeassistant.h",
|
"snippetparser.cpp",
|
||||||
"completionassistprovider.cpp",
|
"snippetparser.h",
|
||||||
"completionassistprovider.h",
|
"snippetprovider.cpp",
|
||||||
"documentcontentcompletion.cpp",
|
"snippetprovider.h",
|
||||||
"documentcontentcompletion.h",
|
"snippetscollection.cpp",
|
||||||
"functionhintproposal.cpp",
|
"snippetscollection.h",
|
||||||
"functionhintproposal.h",
|
"snippetssettings.cpp",
|
||||||
"functionhintproposalwidget.cpp",
|
"snippetssettings.h",
|
||||||
"functionhintproposalwidget.h",
|
"snippetssettingspage.cpp",
|
||||||
"genericproposal.cpp",
|
"snippetssettingspage.h",
|
||||||
"genericproposal.h",
|
]
|
||||||
"genericproposalmodel.cpp",
|
}
|
||||||
"genericproposalmodel.h",
|
|
||||||
"genericproposalwidget.cpp",
|
|
||||||
"genericproposalwidget.h",
|
|
||||||
"iassistprocessor.cpp",
|
|
||||||
"iassistprocessor.h",
|
|
||||||
"iassistproposal.cpp",
|
|
||||||
"iassistproposal.h",
|
|
||||||
"iassistproposalmodel.cpp",
|
|
||||||
"iassistproposalmodel.h",
|
|
||||||
"iassistproposalwidget.cpp",
|
|
||||||
"iassistproposalwidget.h",
|
|
||||||
"iassistprovider.cpp",
|
|
||||||
"iassistprovider.h",
|
|
||||||
"ifunctionhintproposalmodel.cpp",
|
|
||||||
"ifunctionhintproposalmodel.h",
|
|
||||||
"keywordscompletionassist.cpp",
|
|
||||||
"keywordscompletionassist.h",
|
|
||||||
"textdocumentmanipulator.cpp",
|
|
||||||
"textdocumentmanipulator.h",
|
|
||||||
"textdocumentmanipulatorinterface.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Group {
|
QtcTestFiles {
|
||||||
name: "Snippets"
|
files: [
|
||||||
prefix: "snippets/"
|
"codeassist/codeassist_test.cpp",
|
||||||
files: [
|
"codeassist/codeassist_test.h",
|
||||||
"reuse.h",
|
"highlighter_test.cpp",
|
||||||
"snippet.cpp",
|
"highlighter_test.h",
|
||||||
"snippet.h",
|
"texteditor_test.cpp",
|
||||||
"snippetassistcollector.cpp",
|
]
|
||||||
"snippetassistcollector.h",
|
|
||||||
"snippeteditor.cpp",
|
|
||||||
"snippeteditor.h",
|
|
||||||
"snippetoverlay.cpp",
|
|
||||||
"snippetoverlay.h",
|
|
||||||
"snippetparser.cpp",
|
|
||||||
"snippetparser.h",
|
|
||||||
"snippetprovider.cpp",
|
|
||||||
"snippetprovider.h",
|
|
||||||
"snippetscollection.cpp",
|
|
||||||
"snippetscollection.h",
|
|
||||||
"snippetssettings.cpp",
|
|
||||||
"snippetssettings.h",
|
|
||||||
"snippetssettingspage.cpp",
|
|
||||||
"snippetssettingspage.h",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
QtcTestFiles {
|
|
||||||
files: [
|
|
||||||
"codeassist/codeassist_test.cpp",
|
|
||||||
"codeassist/codeassist_test.h",
|
|
||||||
"highlighter_test.cpp",
|
|
||||||
"highlighter_test.h",
|
|
||||||
"texteditor_test.cpp",
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user