[Issue 12518] Add ability to not rebuild the project on file with custom build tool change

2017-06-05 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12518

Rainer Schuetze  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Rainer Schuetze  ---
> 1. The file output is only linked with the project (e.g. *.h or *.rc file 
> generating a *.res file).
>Here only relink is needed, no recompiling.

https://github.com/dlang/visuald/releases/tag/v0.45.0-beta1 now uses two
separate steps (with their own set of dependencies) if anything but "combined"
compilation is used.

--


[Issue 12518] Add ability to not rebuild the project on file with custom build tool change

2014-04-04 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12518


Rainer Schuetze  changed:

   What|Removed |Added

 CC||r.sagita...@gmx.de


--- Comment #1 from Rainer Schuetze  2014-04-04 10:36:34 
PDT ---
Makes sense to not force a compile and link step if a custom rule does not
contribute to the link. Splitting compile and link into separate steps is a bit
more work as it needs other dependency checks. A custom build step might also
contribute to compilation (e.g. by generating a string import file).

Regarding #2: How about adding a build tool "Copy", that could also update the
modification date of the target?

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 12518] Add ability to not rebuild the project on file with custom build tool change

2014-10-10 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12518

--- Comment #2 from Rainer Schuetze  ---
regarding 2: 0.3.39 now has a new option "assume outout uptodate with same
time" for the custom build tool.

--