~ubuntu-branches/ubuntu/trusty/kdevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to projectbuilders/cmakebuilder/cmakejob.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-12-09 18:54:59 UTC
  • mfrom: (1.7.19)
  • Revision ID: package-import@ubuntu.com-20131209185459-zlxv7jo7up8gthne
Tags: 4:4.6.0-0ubuntu1
* New upstream release (LP: #1259220)
* Update install files 

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    setFilteringStrategy( OutputModel::CompilerFilter );
49
49
    setProperties( NeedWorkingDirectory | PortableMessages | DisplayStderr | IsBuilderHint );
50
50
    setToolTitle( i18n("CMake") );
 
51
    setStandardToolView( KDevelop::IOutputView::BuildView );
 
52
    setBehaviours(KDevelop::IOutputView::AllowUserClose | KDevelop::IOutputView::AutoScroll );
51
53
}
52
54
 
53
55
void CMakeJob::start()
64
66
    QDir::temp().mkpath(workingDirectory().toLocalFile());
65
67
    CMake::updateConfig( m_project, CMake::currentBuildDirIndex(m_project) );
66
68
 
67
 
    setStandardToolView( KDevelop::IOutputView::BuildView );
68
 
    setBehaviours(KDevelop::IOutputView::AllowUserClose | KDevelop::IOutputView::AutoScroll );
69
 
 
70
69
    OutputExecuteJob::start();
71
70
}
72
71