Files
qt-creator/src/plugins/nim/nim.qbs
hjk 200d81d38c Nim: Aspectify NimbleBuildStep
Change-Id: I0f166e68590901568edfd590606df57e25111b9a
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
2020-07-28 13:38:54 +00:00

95 lines
3.0 KiB
QML

import qbs 1.0
QtcPlugin {
name: "Nim"
Depends { name: "Qt.widgets" }
Depends { name: "Utils" }
Depends { name: "Core" }
Depends { name: "TextEditor" }
Depends { name: "ProjectExplorer" }
cpp.includePaths: base.concat(["."])
Group {
name: "General"
files: [
"nimplugin.cpp", "nimplugin.h",
"nimconstants.h",
"nim.qrc",
]
}
Group {
name: "Editor"
prefix: "editor/"
files: [
"nimeditorfactory.h", "nimeditorfactory.cpp",
"nimhighlighter.h", "nimhighlighter.cpp",
"nimindenter.h", "nimindenter.cpp",
"nimtexteditorwidget.h", "nimtexteditorwidget.cpp",
"nimcompletionassistprovider.h", "nimcompletionassistprovider.cpp"
]
}
Group {
name: "Project"
prefix: "project/"
files: [
"nimbuildsystem.cpp", "nimbuildsystem.h",
"nimbuildconfiguration.h", "nimbuildconfiguration.cpp",
"nimcompilerbuildstep.h", "nimcompilerbuildstep.cpp",
"nimcompilerbuildstepconfigwidget.h", "nimcompilerbuildstepconfigwidget.cpp", "nimcompilerbuildstepconfigwidget.ui",
"nimcompilercleanstep.h", "nimcompilercleanstep.cpp",
"nimproject.h", "nimproject.cpp",
"nimprojectnode.h", "nimprojectnode.cpp",
"nimrunconfiguration.h", "nimrunconfiguration.cpp",
"nimtoolchain.h", "nimtoolchain.cpp",
"nimtoolchainfactory.h", "nimtoolchainfactory.cpp",
"nimblebuildstep.h", "nimblebuildstep.cpp",
"nimbleproject.h", "nimbleproject.cpp",
"nimblerunconfiguration.h", "nimblerunconfiguration.cpp",
"nimbletaskstep.h", "nimbletaskstep.cpp",
"nimbletaskstepwidget.h", "nimbletaskstepwidget.cpp", "nimbletaskstepwidget.ui",
"nimblebuildsystem.h", "nimblebuildsystem.cpp",
"nimblebuildconfiguration.h", "nimblebuildconfiguration.cpp",
]
}
Group {
name: "Settings"
prefix: "settings/"
files: [
"nimcodestylepreferencesfactory.h", "nimcodestylepreferencesfactory.cpp",
"nimcodestylepreferenceswidget.h", "nimcodestylepreferenceswidget.cpp", "nimcodestylepreferenceswidget.ui",
"nimcodestylesettingspage.h", "nimcodestylesettingspage.cpp",
"nimsettings.h", "nimsettings.cpp",
"nimtoolssettingspage.h", "nimtoolssettingspage.cpp", "nimtoolssettingswidget.ui"
]
}
Group {
name: "Tools"
prefix: "tools/"
files: [
"nimlexer.h", "nimlexer.cpp",
"sourcecodestream.h"
]
}
Group {
name: "Suggest"
prefix: "suggest/"
files: [
"client.h", "client.cpp",
"clientrequests.h", "clientrequests.cpp",
"nimsuggest.h", "nimsuggest.cpp",
"nimsuggestcache.h", "nimsuggestcache.cpp",
"server.h", "server.cpp",
"sexprlexer.h",
"sexprparser.h",
]
}
}