2014-03-11 11:30:14 +01:00
|
|
|
import qbs 1.0
|
2012-02-09 14:30:09 +01:00
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "QmlJSTools"
|
|
|
|
|
|
2016-05-13 12:11:43 +02:00
|
|
|
Depends { name: "Qt"; submodules: ["widgets"] }
|
2014-02-10 13:02:33 +01:00
|
|
|
Depends { name: "Aggregation" }
|
|
|
|
|
Depends { name: "CPlusPlus" }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "LanguageUtils" }
|
|
|
|
|
Depends { name: "QmlJS" }
|
2014-02-10 13:02:33 +01:00
|
|
|
Depends { name: "Utils" }
|
|
|
|
|
|
|
|
|
|
Depends { name: "Core" }
|
2021-08-30 10:58:08 +02:00
|
|
|
Depends { name: "CppEditor" }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "ProjectExplorer" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
Depends { name: "QtSupport" }
|
|
|
|
|
|
|
|
|
|
files: [
|
2012-12-06 17:20:58 +01:00
|
|
|
"qmljsbundleprovider.cpp",
|
|
|
|
|
"qmljsbundleprovider.h",
|
2022-04-07 21:56:10 +02:00
|
|
|
"qmljscodestylepreferences.cpp",
|
|
|
|
|
"qmljscodestylepreferences.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmljscodestylepreferencesfactory.cpp",
|
|
|
|
|
"qmljscodestylepreferencesfactory.h",
|
2022-04-07 21:56:10 +02:00
|
|
|
"qmljscodestylepreferenceswidget.cpp",
|
|
|
|
|
"qmljscodestylepreferenceswidget.h",
|
|
|
|
|
"qmljscodestylesettings.cpp",
|
|
|
|
|
"qmljscodestylesettings.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmljscodestylesettingspage.cpp",
|
|
|
|
|
"qmljscodestylesettingspage.h",
|
|
|
|
|
"qmljscodestylesettingspage.ui",
|
2022-04-07 21:56:10 +02:00
|
|
|
"qmljscodestylesettingswidget.cpp",
|
|
|
|
|
"qmljscodestylesettingswidget.h",
|
|
|
|
|
"qmljscodestylesettingswidget.ui",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmljsfunctionfilter.cpp",
|
|
|
|
|
"qmljsfunctionfilter.h",
|
|
|
|
|
"qmljsindenter.cpp",
|
|
|
|
|
"qmljsindenter.h",
|
|
|
|
|
"qmljslocatordata.cpp",
|
|
|
|
|
"qmljslocatordata.h",
|
|
|
|
|
"qmljsmodelmanager.cpp",
|
|
|
|
|
"qmljsmodelmanager.h",
|
|
|
|
|
"qmljsqtstylecodeformatter.cpp",
|
|
|
|
|
"qmljsqtstylecodeformatter.h",
|
|
|
|
|
"qmljsrefactoringchanges.cpp",
|
|
|
|
|
"qmljsrefactoringchanges.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmljssemanticinfo.cpp",
|
|
|
|
|
"qmljssemanticinfo.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmljstools_global.h",
|
|
|
|
|
"qmljstoolsconstants.h",
|
|
|
|
|
"qmljstoolsplugin.cpp",
|
|
|
|
|
"qmljstoolsplugin.h",
|
|
|
|
|
"qmljstoolssettings.cpp",
|
|
|
|
|
"qmljstoolssettings.h",
|
2012-10-04 14:54:59 +02:00
|
|
|
"qmljstools.qrc"
|
2012-02-09 14:30:09 +01:00
|
|
|
]
|
|
|
|
|
|
2012-09-05 11:01:43 +02:00
|
|
|
Group {
|
2013-06-06 09:08:16 +02:00
|
|
|
name: "Tests"
|
2016-05-17 10:50:51 +02:00
|
|
|
condition: qtc.testsEnabled
|
2012-09-05 11:01:43 +02:00
|
|
|
files: ["qmljstools_test.cpp"]
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-24 15:58:33 +02:00
|
|
|
Export {
|
2021-08-30 10:58:08 +02:00
|
|
|
Depends { name: "CppEditor" }
|
2012-04-18 12:06:10 +02:00
|
|
|
Depends { name: "QmlDebug" }
|
2012-02-09 14:30:09 +01:00
|
|
|
}
|
|
|
|
|
}
|