Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Checking if CDT build has failed

Hello all,

I have this problem: i am writing eclipse plugin, which uses CDT to build it's project with special settings. So i use IProject's function void build(int kind, IProgressMonitor monitor). Due to specification ( http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse/core/resources/IProject.html ), it must throw a CoreException if build fails. But CDT does not throws this exception, if build fails. So how can i detect that CDT build has failed?

Back to the top