forked from qt-creator/qt-creator
add qbs files
Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
68
src/plugins/qmljstools/qmljstools.qbs
Normal file
68
src/plugins/qmljstools/qmljstools.qbs
Normal file
@@ -0,0 +1,68 @@
|
||||
import qbs.base 1.0
|
||||
|
||||
import "../QtcPlugin.qbs" as QtcPlugin
|
||||
|
||||
QtcPlugin {
|
||||
name: "QmlJSTools"
|
||||
|
||||
Depends { name: "qt"; submodules: ['gui'] }
|
||||
Depends { name: "utils" }
|
||||
Depends { name: "extensionsystem" }
|
||||
Depends { name: "aggregation" }
|
||||
Depends { name: "Core" }
|
||||
Depends { name: "LanguageUtils" }
|
||||
Depends { name: "CPlusPlus" }
|
||||
Depends { name: "QmlJS" }
|
||||
Depends { name: "ProjectExplorer" }
|
||||
Depends { name: "TextEditor" }
|
||||
Depends { name: "Locator" }
|
||||
Depends { name: "QmlJSDebugClient" }
|
||||
Depends { name: "QtSupport" }
|
||||
|
||||
Depends { name: "cpp" }
|
||||
cpp.defines: base.concat(["QT_NO_CAST_TO_ASCII"])
|
||||
cpp.includePaths: [
|
||||
"..",
|
||||
"../../libs",
|
||||
"../../libs/3rdparty",
|
||||
buildDirectory
|
||||
]
|
||||
|
||||
files: [
|
||||
"qmljsmodelmanager.cpp",
|
||||
"qmljsmodelmanager.h",
|
||||
"qmljscodestylesettingspage.cpp",
|
||||
"qmljscodestylesettingspage.h",
|
||||
"qmljscodestylesettingspage.ui",
|
||||
"qmljsfindexportedcpptypes.cpp",
|
||||
"qmljsfindexportedcpptypes.h",
|
||||
"qmljsfunctionfilter.cpp",
|
||||
"qmljsfunctionfilter.h",
|
||||
"qmljsindenter.cpp",
|
||||
"qmljsindenter.h",
|
||||
"qmljslocatordata.cpp",
|
||||
"qmljslocatordata.h",
|
||||
"qmljsmodelmanager.cpp",
|
||||
"qmljsmodelmanager.h",
|
||||
"qmljsplugindumper.cpp",
|
||||
"qmljsplugindumper.h",
|
||||
"qmljsqtstylecodeformatter.cpp",
|
||||
"qmljsqtstylecodeformatter.h",
|
||||
"qmljsrefactoringchanges.cpp",
|
||||
"qmljsrefactoringchanges.h",
|
||||
"qmljstools_global.h",
|
||||
"qmljstoolsconstants.h",
|
||||
"qmljstoolsplugin.cpp",
|
||||
"qmljstoolsplugin.h",
|
||||
"qmljstoolssettings.cpp",
|
||||
"qmljstoolssettings.h",
|
||||
"qmljscodestylepreferencesfactory.cpp",
|
||||
"qmljscodestylepreferencesfactory.h"
|
||||
]
|
||||
|
||||
ProductModule {
|
||||
Depends { name: "CPlusPlus" }
|
||||
Depends { name: "QmlJSDebugClient" }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user