forked from qt-creator/qt-creator
33 lines
761 B
QML
33 lines
761 B
QML
|
|
import qbs
|
||
|
|
|
||
|
|
QtcPlugin {
|
||
|
|
name: "Cppcheck"
|
||
|
|
|
||
|
|
Depends { name: "Core" }
|
||
|
|
Depends { name: "CppTools" }
|
||
|
|
Depends { name: "ProjectExplorer" }
|
||
|
|
Depends { name: "TextEditor" }
|
||
|
|
Depends { name: "Utils" }
|
||
|
|
|
||
|
|
Depends { name: "Qt.widgets" }
|
||
|
|
|
||
|
|
files: [
|
||
|
|
"cppcheckconstants.h",
|
||
|
|
"cppcheckdiagnostic.h",
|
||
|
|
"cppcheckoptions.cpp",
|
||
|
|
"cppcheckoptions.h",
|
||
|
|
"cppcheckplugin.cpp",
|
||
|
|
"cppcheckplugin.h",
|
||
|
|
"cppcheckrunner.cpp",
|
||
|
|
"cppcheckrunner.h",
|
||
|
|
"cppchecktextmark.cpp",
|
||
|
|
"cppchecktextmark.h",
|
||
|
|
"cppchecktextmarkmanager.cpp",
|
||
|
|
"cppchecktextmarkmanager.h",
|
||
|
|
"cppchecktool.cpp",
|
||
|
|
"cppchecktool.h",
|
||
|
|
"cppchecktrigger.cpp",
|
||
|
|
"cppchecktrigger.h"
|
||
|
|
]
|
||
|
|
}
|