> what I'm expecting to have to do is maintain
> two development stacks, one with Mac-specific things, the other with
> PC-specifics, but sharing 99.5% of their content and coding - even though
> it's not flawless "write once, compile everywhere", I expect it to be a
> large improvement over what I've been doing.
There should be no need to do this. If there is part of your script that is
platform dependant then you just do:
switch the platform
case "MacOS"
Mac stuff here
break
case "Windows"
Windows stuff here
break
default
UNIX stuff here
break
end switch
Revoloution is "write once, compile everywhere"
Monte
- Re: Best building procedure-AND a question Marian Petrides, M.D.
- Re: Best building procedure-AND a question Monte Goulding
- Re: Best building procedure-AND a question Geoff Canyon
- Re: Best building procedure-AND a question Marian Petrides
- Re: Best building procedure-AND a question Geoff Canyon
- Re: Best building procedure-AND a question William T. Simmons
- Re: Best building procedure-AND a question Geoff Canyon
- Re: Best building procedure-AND a question Monte Goulding
- Re: Best building procedure-AND a question William T. Simmons
- Re: Best building procedure-AND a question Richard Gaskin
