On 13 November 2012 06:20, Andrej Mitrovic <andrej.mitrov
...@gmail.com> wrote:
> I would like to have a SciTEDirectory.properties file, but run one or
> another command based on which operating system Scite is running on. For
> example:
> # pseudocode
> command.go.*.d=$(WIN) ? $(ENV_VAR)\build\build.bat :
> $(ENV_VAR)/build/build.sh
> Are there any tricks I could use to achieve something like this?
Does the PLAT_GTK / PLAT_WIN stuff work in this case? I never used the
directory files or command.go but maybe try something like
if PLAT_WIN
command.go.*.d=. . ./build.bat
if PLAT_GTK # or maybe PLAT_UNIX
command.go.*.d=. . ./build.sh
I think the indentation is required.