Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [cdt-dev] Listening for changes in the MBS/Standard Make system

Hi Derek,

You can register a resource change listener ( see IWorkspace.
addResourceChangeListener(listener) ) for listening to most of eclipse
workspace resource changes.

Unfortunately there is no listener mechanism available for the Managed
Build tool options. The only notifications implemented in MBS for
options are option value handler events. If you need to handle option
changes of your own tool-chain then the solution for you may be to use
the Option Value Handler mechanism.

Mikhail
 
-----Original Message-----
From: cdt-dev-bounces@xxxxxxxxxxx [mailto:cdt-dev-bounces@xxxxxxxxxxx]
On Behalf Of Derek Morris
Sent: Wednesday, November 01, 2006 6:32 PM
To: CDT General developers list.
Subject: [cdt-dev] Listening for changes in the MBS/Standard Make system

Hi,

I am looking for some clues as to how to listen for changes in the MBS
(and - 
for future reference - the Standard make system ).

Specifically, I want to know
- when files (resources) are created/deleted/renamed
- when projects are created/deleted
- when project references are updated
- when tools options are changed
etc

Thanks in advance
-- 
Derek
_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev


Back to the top