forked from qt-creator/qt-creator
Use the make command defined by the tool chain
For now only for GenericProject, since the CMakeProject doesn't have the right tool chain set on Windows yet. Reviewed-by: dt
This commit is contained in:
@@ -233,7 +233,7 @@ QString CMakeProject::buildParser(const QString &buildConfiguration) const
|
||||
QStringList CMakeProject::targets() const
|
||||
{
|
||||
QStringList results;
|
||||
foreach(const CMakeTarget &ct, m_targets)
|
||||
foreach (const CMakeTarget &ct, m_targets)
|
||||
results << ct.title;
|
||||
return results;
|
||||
}
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
#include <QtCore/QXmlStreamReader>
|
||||
|
||||
namespace CMakeProjectManager {
|
||||
namespace Internal{
|
||||
namespace Internal {
|
||||
|
||||
class CMakeFile;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user