|
22 | 22 | //
|
23 | 23 | //////////////////////////////////////////////////////////////////////////////
|
24 | 24 | //////////////////////////////////////////////////////////////////////////////
|
25 |
| -#include <wx/app.h> |
26 |
| -#include <wx/log.h> |
27 |
| -#include "buildmanager.h" |
28 |
| -#include "event_notifier.h" |
29 | 25 | #include "asyncprocess.h"
|
30 |
| -#include "imanager.h" |
31 |
| -#include <wx/ffile.h> |
32 |
| -#include "environmentconfig.h" |
33 |
| -#include "globals.h" |
34 |
| -#include "dirsaver.h" |
35 | 26 | #include "build_settings_config.h"
|
| 27 | +#include "buildmanager.h" |
| 28 | +#include "cl_command_event.h" |
36 | 29 | #include "compiler.h"
|
37 | 30 | #include "custombuildrequest.h"
|
38 |
| -#include "workspace.h" |
39 |
| -#include "plugin.h" |
| 31 | +#include "dirsaver.h" |
| 32 | +#include "environmentconfig.h" |
| 33 | +#include "event_notifier.h" |
| 34 | +#include "globals.h" |
| 35 | +#include "imanager.h" |
40 | 36 | #include "macros.h"
|
41 |
| -#include "cl_command_event.h" |
| 37 | +#include "plugin.h" |
| 38 | +#include "workspace.h" |
| 39 | +#include <wx/app.h> |
| 40 | +#include <wx/ffile.h> |
| 41 | +#include <wx/log.h> |
42 | 42 |
|
43 | 43 | #ifdef __WXMSW__
|
44 | 44 | #define ECHO_CMD wxT("@echo ")
|
@@ -91,7 +91,7 @@ void CustomBuildRequest::Process(IManager* manager)
|
91 | 91 | BuildConfigPtr bldConf = w->GetProjBuildConf(m_info.GetProject(), m_info.GetConfiguration());
|
92 | 92 | if(!bldConf) {
|
93 | 93 | wxLogMessage(wxString::Format(wxT("Failed to find build configuration for project '%s' and configuration '%s'"),
|
94 |
| - m_info.GetProject().c_str(), m_info.GetConfiguration().c_str())); |
| 94 | + m_info.GetProject().c_str(), m_info.GetConfiguration().c_str())); |
95 | 95 | return;
|
96 | 96 | }
|
97 | 97 |
|
@@ -227,8 +227,8 @@ void CustomBuildRequest::Process(IManager* manager)
|
227 | 227 | }
|
228 | 228 | }
|
229 | 229 |
|
230 |
| -bool CustomBuildRequest::DoUpdateCommand( |
231 |
| - IManager* manager, wxString& cmd, ProjectPtr proj, BuildConfigPtr bldConf, bool isClean) |
| 230 | +bool CustomBuildRequest::DoUpdateCommand(IManager* manager, wxString& cmd, ProjectPtr proj, BuildConfigPtr bldConf, |
| 231 | + bool isClean) |
232 | 232 | {
|
233 | 233 | BuildCommandList preBuildCmds, postBuildCmds;
|
234 | 234 | wxArrayString pre, post;
|
|
0 commit comments