diff --git a/DN.Types.pas b/DN.Types.pas index 682f866..1c7de1a 100644 --- a/DN.Types.pas +++ b/DN.Types.pas @@ -16,7 +16,7 @@ interface TCompilerVersion = Single; TDNCompilerTarget = (ctBuild, ctCompile); TDNCompilerConfig = (ccRelease, ccDebug); - TDNCompilerPlatform = (cpWin32, cpWin64, cpOSX32); + TDNCompilerPlatform = (cpWin32, cpWin64, cpOSX32, cpAndroid, cpIOSDevice32, cpIOSDevice64); TDNCompilerPlatforms = set of TDNCompilerPlatform; const diff --git a/DN.Utils.pas b/DN.Utils.pas index 3262d23..127cac9 100644 --- a/DN.Utils.pas +++ b/DN.Utils.pas @@ -12,7 +12,7 @@ function GeneratePlatformString(APlatforms: TDNCompilerPlatforms): string; const TDNCompilerTargetName: array[Low(TDNCompilerTarget)..High(TDNCompilerTarget)] of string = ('Build', 'Compile'); TDNCompilerConfigName: array[Low(TDNCompilerConfig)..High(TDNCompilerConfig)] of string = ('Release', 'Debug'); - TDNCompilerPlatformName: array[Low(TDNCompilerPlatform)..High(TDNCompilerPlatform)] of string = ('Win32', 'Win64', 'OSX32'); + TDNCompilerPlatformName: array[Low(TDNCompilerPlatform)..High(TDNCompilerPlatform)] of string = ('Win32', 'Win64', 'OSX32', 'Android', 'IOSDevice32', 'IOSDevice64'); function TryPlatformNameToCompilerPlatform(const AName: string; out APlatform: TDNCompilerPlatform): Boolean;