Skip to content

Commit

Permalink
Enabled Android+IOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Memnarch committed Jul 4, 2017
1 parent 6c714c9 commit 86b2751
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DN.Types.pas
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion DN.Utils.pas
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 86b2751

Please sign in to comment.