Define your own defines:
This can be used like this:
{$IFDEF APPSTORE}
{$ENDIF APPSTORE}
Examples:
{$IFDEF MSWINDOWS}
// Windows only
{$ENDIF MSWINDOWS}
{$IFDEF Darwin}
// OSX only
{$ENDIF Darwin}
{$IFDEF LINUX}
// Linux only
{$ENDIF}
Other possible defines for different operating systems: