Tagged Questions
3
votes
1answer
178 views
Are there any Build tools designed with Mercurial in mind?
I've just moved a large project out of a legacy version control system, and into Mercurial. I'm now faced with the task (opportunity!) of overhauling my old build system to work with this new source ...
3
votes
2answers
272 views
Choosing a scripting/build tool
We are currently working on a project with both actionscript and Java. Up to now, we were using Ant as our main build tool, but the dumb amount of duplication it implies and the lack of flexibility ...
2
votes
2answers
126 views
How can I work with filenames with spaces in bjam?
I need to describe an external library in a Jamfile. The location of the library is held in an environment variable.
set EX_LIB_PATH=C:\Program Files\Ext
Here is the snippet from the Jamfile:
...
2
votes
1answer
248 views
Define cross directory dependencies in Jam
After many years of using make, I've just started using jam (actually ftjam) for my projects.
In my project workspaces, I have two directories:
src where I build executables and libraries
test ...
1
vote
7answers
50 views
Java Build tool flexible enough to do conditional checks
I currently use Ant to build Java software.
However, all development that I have done so far was not very complex. So, ant was sufficient for me.
Recently, I have started working on a bit complex ...