forked from qt-creator/qt-creator
29 lines
877 B
QML
29 lines
877 B
QML
|
|
import qbs 1.0
|
||
|
|
|
||
|
|
QtcPlugin {
|
||
|
|
name: "Haskell"
|
||
|
|
|
||
|
|
Depends { name: "Qt.widgets" }
|
||
|
|
Depends { name: "Utils" }
|
||
|
|
|
||
|
|
Depends { name: "Core" }
|
||
|
|
Depends { name: "TextEditor" }
|
||
|
|
Depends { name: "ProjectExplorer" }
|
||
|
|
|
||
|
|
files: [
|
||
|
|
"haskell.qrc",
|
||
|
|
"haskellbuildconfiguration.cpp", "haskellbuildconfiguration.h",
|
||
|
|
"haskellconstants.h",
|
||
|
|
"haskelleditorfactory.cpp", "haskelleditorfactory.h",
|
||
|
|
"haskell_global.h",
|
||
|
|
"haskellhighlighter.cpp", "haskellhighlighter.h",
|
||
|
|
"haskellmanager.cpp", "haskellmanager.h",
|
||
|
|
"haskellplugin.cpp", "haskellplugin.h",
|
||
|
|
"haskellproject.cpp", "haskellproject.h",
|
||
|
|
"haskellrunconfiguration.cpp", "haskellrunconfiguration.h",
|
||
|
|
"haskelltokenizer.cpp", "haskelltokenizer.h",
|
||
|
|
"optionspage.cpp", "optionspage.h",
|
||
|
|
"stackbuildstep.cpp", "stackbuildstep.h"
|
||
|
|
]
|
||
|
|
}
|