mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Build cpio.wcx for macOS
This commit is contained in:
parent
bec4ea82d3
commit
50d5037030
1 changed files with 11 additions and 0 deletions
11
fpmake.pp
11
fpmake.pp
|
|
@ -43,6 +43,11 @@ const
|
|||
'plugins/dsx/DSXLocate/src/DSXLocate.lpi'
|
||||
);
|
||||
|
||||
DarwinPlugins: array[1..1] of String =
|
||||
(
|
||||
'plugins/wcx/cpio/src/cpio.lpi'
|
||||
);
|
||||
|
||||
WindowsPlugins: array[1..1] of String =
|
||||
(
|
||||
'plugins/wcx/sevenzip/src/SevenZipWcx.lpi'
|
||||
|
|
@ -205,6 +210,12 @@ begin
|
|||
BuildEngine.ExecuteCommand(FLazBuild, SetDirSeparators(UnixPlugins[I]) + FLazBuildParams);
|
||||
end;
|
||||
|
||||
if Defaults.OS = Darwin then
|
||||
begin
|
||||
for I:= Low(DarwinPlugins) to High(DarwinPlugins) do
|
||||
BuildEngine.ExecuteCommand(FLazBuild, SetDirSeparators(DarwinPlugins[I]) + FLazBuildParams);
|
||||
end;
|
||||
|
||||
if Defaults.OS in AllWindowsOSes then
|
||||
begin
|
||||
for I:= Low(WindowsPlugins) to High(WindowsPlugins) do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue