| 7 | #include "common/common.h" |
| 8 | |
| 9 | void SendEvents::buildProject(const QString &buildSystem, |
| 10 | const QString &buildDir, |
| 11 | const QString &buildFilePath, |
| 12 | const QStringList &buildArgs) |
| 13 | { |
| 14 | dpf::Event event; |
| 15 | event.setTopic(T_FILEBROWSER); |
| 16 | event.setData(D_ITEM_MENU_BUILD); |
| 17 | event.setProperty(P_BUILDSYSTEM, buildSystem); |
| 18 | event.setProperty(P_BUILDDIRECTORY, buildDir); |
| 19 | event.setProperty(P_BUILDFILEPATH, buildFilePath); |
| 20 | event.setProperty(P_BUILDARGUMENTS, buildArgs); |
| 21 | qInfo() << __FUNCTION__ << event; |
| 22 | dpf::EventCallProxy::instance().pubEvent(event); |
| 23 | } |
| 24 | |
| 25 | void SendEvents::gengrateWorkspace(const QString &projectPath) |
| 26 | { |
nothing calls this directly
no test coverage detected