summaryrefslogtreecommitdiffstats
path: root/buildtool.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* buildtool: update help messageJohan B. C. Engelen2012-04-251-0/+1
| | | (bzr r11294)
* clean upJohan B. C. Engelen2012-03-151-4/+0
| | | (bzr r11092)
* buildtool: don't create build output folders in parallel. superfast in ↵Johan B. C. Engelen2012-03-141-15/+24
| | | | | series, so no need, and bugs in parallel. (bzr r11088)
* buildtool: allow parallel builds with btool -j :)Johan B. C. Engelen2012-03-141-19/+77
| | | (bzr r11087)
* Return empty string instead of false where needed.Jasper van de Gronde2011-07-241-1/+1
| | | (bzr r10500)
* Memory leak fixes (Bug #812497)Kris De Gussem2011-07-201-2/+9
| | | (bzr r10483)
* Fix file permissions (Bug #314381).Nicolas Dufour2010-08-301-0/+0
| | | (bzr r9732)
* Win32. Adding revno in the splash screen.Nicolas Dufour2010-03-081-16/+43
| | | (bzr r9166)
* Fix FD leak in buildtool.cppKrzysztof Kosi??ski2010-02-071-0/+1
| | | | | | Fixed bugs: - https://launchpad.net/bugs/488862 (bzr r9063)
* Fix for LP #386256 (Inkscape-0.47pre0 does not build on win32).Nicolas Dufour2009-07-311-0/+6
| | | | | Returns an empty string instead of false when looking for svn.revision when the snapshot doesn't contain an svn dir. (bzr r8371)
* Merging from trunkTed Gould2008-10-111-7/+143
| | | (bzr r6884)
* enable failOnError in TaskDeleteBob Jamison2008-08-261-3/+2
| | | (bzr r6717)
* fixed bug in removeFile()Bob Jamison2008-08-261-2/+11
| | | (bzr r6716)
* Fixed svg-path (and display/curve) tests to properly handle closepath and ↵Jasper van de Gronde2008-08-081-9/+177
| | | | | made a check target. (bzr r6592)
* Fixed version of stat cache for buildtool.cpp (now invalidates cache entries ↵Jasper van de Gronde2008-08-021-35/+146
| | | | | for files that are changed during the build process). (bzr r6522)
* revert r19450. fixes buildtool.Johan B. C. Engelen2008-08-011-24/+10
| | | (bzr r6501)
* Fix #ifdef type. Closes LP #253859Maximilian Albert2008-08-011-1/+1
| | | (bzr r6499)
* By caching stat results in buildtool the build time for a build which has to ↵Jasper van de Gronde2008-07-281-10/+24
| | | | | change nothing is reduced to about a third (less than ten seconds instead of about 30 seconds on my system). (Obviously a build which changes nothing is not very interesting, but a build which has to change only a few files is very common.) (bzr r6440)
* CxxTest unit tests can now be built on Windows, also adds CxxTest versions ↵Jasper van de Gronde2008-07-011-6/+215
| | | | | of most UTEST unit tests. (These new CxxTest tests are not part of make check on Linux yet.) (bzr r6106)
* tweak stdout/stderr pipingBob Jamison2008-06-231-7/+7
| | | (bzr r6027)
* Improve "can't find" error msg for pkgconfigBob Jamison2008-06-141-1/+5
| | | (bzr r5943)
* rollup of buildtool/unix work. compiles and links inkscapeBob Jamison2008-06-061-3/+7
| | | (bzr r5833)
* finally debugged. read() on a pipe has different results on different ↵Bob Jamison2008-06-061-4/+2
| | | | | boxes. sorry about the many commits (bzr r5832)
* rewrite pipe reading to avoid deadlockBob Jamison2008-06-061-15/+39
| | | (bzr r5831)
* rewrite pipe reading to avoid deadlockBob Jamison2008-06-061-15/+18
| | | (bzr r5830)
* minor typo in comparisonBob Jamison2008-06-061-1/+1
| | | (bzr r5827)
* oops. sys/wait.h not on win32Bob Jamison2008-06-051-1/+2
| | | (bzr r5822)
* rewrite execCommand's unix impl to better handle separate stdout and stderr ↵Bob Jamison2008-06-051-25/+98
| | | | | spools (bzr r5821)
* include <algorithm> for std::sortBob Jamison2008-06-051-1/+3
| | | (bzr r5820)
* improve pipingBob Jamison2008-06-041-17/+22
| | | (bzr r5807)
* Increase substitution depth, remove unused vars warnings. Implement ↵Bob Jamison2008-05-141-20/+34
| | | | | verbose, quiet, failOnError. (bzr r5672)
* Allow nested substitutions. Such as s="${a}" and a="${b}" and b="hello"Bob Jamison2008-05-131-5/+30
| | | (bzr r5670)
* Extensive update. Provide late binding, and aliases for pkg-config.Bob Jamison2008-05-121-615/+817
| | | (bzr r5657)
* Added <echo> task. Need to decide when substitutions are evaluated. More ↵Bob Jamison2008-05-091-12/+67
| | | | | work to be done. (bzr r5643)
* Add new property to <cc>, refreshCache, to force recompBob Jamison2008-05-021-8/+14
| | | (bzr r5581)
* remove tabsBob Jamison2008-04-251-10/+12
| | | (bzr r5520)
* Tweak "errorOccurred"Bob Jamison2008-04-251-1/+1
| | | (bzr r5519)
* TypoBob Jamison2008-04-251-1/+1
| | | (bzr r5518)
* Add a "continueOnError" flag to TaskCC. If there is an error in one of the ↵Bob Jamison2008-04-251-12/+25
| | | | | files, it will continue with other files, but the final result will still be an error. (bzr r5517)
* One more tweakBob Jamison2008-04-041-3/+3
| | | (bzr r5334)
* make dependency messages a bit betterBob Jamison2008-04-041-2/+2
| | | (bzr r5332)
* Improve status messages a bitBob Jamison2008-04-041-20/+37
| | | (bzr r5331)
* Add an <excludeinc> filelist tag to <cc> to avoid float.h in extension/paramBob Jamison2008-04-041-13/+172
| | | (bzr r5330)
* Add simple <jar> task. Separate "builddist" targetBob Jamison2008-03-311-2/+38
| | | (bzr r5270)
* Improve buggy, slow invocation of javacBob Jamison2008-03-141-11/+28
| | | (bzr r5090)
* Add more javac stuff. Add target="" attribute to javacBob Jamison2008-03-111-2/+11
| | | (bzr r5056)
* whitespace fixupsBryce Harrington2007-12-311-5/+5
| | | (bzr r4347)
* remember to return true from <javac> execute()Bob Jamison2007-12-171-0/+1
| | | (bzr r4251)
* Add initial support for <javac>. Also fix str compare bugBob Jamison2007-12-151-6/+74
| | | (bzr r4233)
* Fixed missing handling of the "environment prefix" and fetching of ↵Bob Jamison2007-12-151-12/+41
| | | | | environment variables. (bzr r4232)