Skip to content

Commit

Permalink
Quicklib.inc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
exilon committed Mar 17, 2023
1 parent 9254b1c commit 02db86e
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion QuickLib.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
This file is part of QuickLib: https://github.com/exilon/QuickLib
QuickLibs. Copyright (C) 2020 Kike Pérez
QuickLibs. Copyright (C) 2022 Kike Pérez
Exilon - https://www.exilon.es
***************************************************************************
Expand Down Expand Up @@ -131,13 +131,40 @@
{$if CompilerVersion >= 34.0} //Delphi RX10.4 Sydney
{$define DELPHIRX104_UP}
{$define DELPHISYDNEY_UP}
{$UNDEF DELPHILINUX}
{$if defined(POSIX)}
{$if defined(CPUARM)}
{$if defined(MACOS)}

{$ELSE}
{$DEFINE ANDROID}
{$ENDIF}
{$ELSE}
{$DEFINE LINUX}
{$DEFINE DELPHILINUX}
{$ENDIF}
{$ENDIF}
{$if defined(ANDROID) OR defined(IOS)}
{$define NEXTGEN} //compatibility with older delphis
{$endif}
{$endif}
{$if CompilerVersion >= 35.0} //Delphi RX11 Alexandria
{$define DELPHIRX11_UP}
{$define DELPHIALEXANDRIA_UP}
{$UNDEF DELPHILINUX}
{$if defined(POSIX)}
{$DEFINE LINUX}
{$if defined(CPUARM)}
{$if defined(MACOS)}

{$ELSE}
{$DEFINE ANDROID}
{$ENDIF}
{$ELSE}
{$DEFINE LINUX}
{$DEFINE DELPHILINUX}
{$ENDIF}
{$ENDIF}
{$if defined(ANDROID) OR defined(IOS)}
{$define NEXTGEN} //compatibility with older delphis
{$endif}
Expand Down

0 comments on commit 02db86e

Please sign in to comment.