Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Status after a build

> I want to check the status after a build to see if everything went OK and if
> a binary file was created. I call build with either;
> 
> ResourcesPlugin.getWorkspace().build(IncrementalProjectBuilder.INCREMENTAL_BUILD,
> monitor);
> or
> project.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, monitor);.
> 
> Does someone got any ideas or can direct me to any guides?
> 
> (btw, build(...) is returning void so I can't just check a report from that
> function.)

Perhaps you can check for C/C++ error markers for the given project,
and if at least one exists presume the binary to be invalid (and to be
safe check for the binary itselve to exist)?


Back to the top