Is it possible to set conditional path variables in Eclipse? This would be useful for instance for a custom builder (which is stored with the project in Indigo - I think this wasn't the case in old Eclipse versions) to call a different program under a different platform.
So what I'm looking for would be a something along the lines of:
${if{${system:OS}=='Windows'}compiler.exe${else}compiler.sh
If you would specifically like to invoke different compilers on different platforms, then you can use Ant or Make to detect your platform and call different programs.
In your project's properties, go to "Builders" and create a new build step. If you're using GNU Make as a builder, you can use syntax like the following in your Makefile:
In Ant build scripts, conditional execution is determined by attributes like
if
,unless
, anddepends
. The<os family=xxx>
tag tells you what OS you're running on. Here's an example from devdaily: