Skip to content

Commit

Permalink
Added Linux64 platform
Browse files Browse the repository at this point in the history
  • Loading branch information
Pawe1 authored and Memnarch committed Jul 4, 2017
1 parent 86b2751 commit 1db068c
Show file tree
Hide file tree
Showing 5 changed files with 4 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, cpAndroid, cpIOSDevice32, cpIOSDevice64);
TDNCompilerPlatform = (cpWin32, cpWin64, cpOSX32, cpAndroid, cpIOSDevice32, cpIOSDevice64, cpLinux64);
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', 'Android', 'IOSDevice32', 'IOSDevice64');
TDNCompilerPlatformName: array[Low(TDNCompilerPlatform)..High(TDNCompilerPlatform)] of string = ('Win32', 'Win64', 'OSX32', 'Android', 'IOSDevice32', 'IOSDevice64', 'Linux64');

function TryPlatformNameToCompilerPlatform(const AName: string; out APlatform: TDNCompilerPlatform): Boolean;

Expand Down
Binary file added Icons/Linux.ico
Binary file not shown.
1 change: 1 addition & 0 deletions Packages/Delphinus.Resources.Names.pas
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ interface
Ico_Android = 'Ico_Android';
Ico_Mac = 'Ico_Mac';
Ico_IOS = 'Ico_IOS';
Ico_Linux = 'Ico_Linux';
Ico_Folder = 'Ico_Folder';
Ico_Refresh = 'Ico_Refresh';
Ico_Options = 'Ico_Options';
Expand Down
1 change: 1 addition & 0 deletions Packages/DelphinusImages.rc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Ico_Windows ICON "..\\Icons\\Windows.ico"
Ico_Android ICON "..\\Icons\Android.ico"
Ico_Mac ICON "..\\Icons\\Mac.ico"
Ico_IOS ICON "..\\Icons\\IOS.ico"
Ico_Linux ICON "..\\Icons\\Linux.ico"
Ico_Folder ICON "..\Icons\\Folder.ico"
Ico_Refresh ICON "..\\Icons\\Refresh.ico"
Ico_Options ICON "..\\Icons\\Options.ico"
Expand Down

0 comments on commit 1db068c

Please sign in to comment.