How do I write the following in the preprocessor directive language?
if (isfullversion and isproduction)
else if (isliteversion)
end if
You create separate targets. one for the lite version, one for the full version, then add compiler flags like -DLITE then check #ifdef LITE in your code.
LITE then #ifndef LITE will be full.