Disable automatical building per project [message #105703] |
Wed, 15 October 2003 14:09  |
Eclipse User |
|
|
|
Originally posted by: demeester.yahoo.com
Is it possible, and if so how? to disable the automatic build process
after saving a single file. I'd like to do this per project. This way i'd
be able to load in a big project (+10000 classes) without to investigate
these sources, without eclipse wanting it to build.
Any suggestions, or should i file it as feature request?
Roel
--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
|
|
|
Re: Disable automatical building per project [message #105792 is a reply to message #105703] |
Wed, 15 October 2003 16:53  |
Eclipse User |
|
|
|
Originally posted by: matt_conway.nospam.i2.com
I've had some success editing the .project file, and removing the
contents of the <buildSpec/> element. This way, I have auto compile
globally turned on, but can disable it for individual projects
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
goes to
<buildSpec>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
Note that by keeping the nature around, you still have most jdt
functionality for that project - you just can't ever build it.
I don't know if there are any complications to doing this, but I haven't
run into any problems yet, and have been doing it for as long as I've
been using the 3.0 stream (it should work for 2.1 stream as well, but
haven't tried it)
Feature request for this:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=3033
Matt
Roel De Meester wrote:
> Is it possible, and if so how? to disable the automatic build process
> after saving a single file. I'd like to do this per project. This way
> i'd be able to load in a big project (+10000 classes) without to
> investigate these sources, without eclipse wanting it to build.
>
> Any suggestions, or should i file it as feature request?
>
> Roel
|
|
|
Powered by
FUDForum. Page generated in 0.05378 seconds