mirror of https://gitlab.com/basile.b/dexed.git
fixes for the linux version
This commit is contained in:
parent
be7ba8d1a2
commit
9ab21f2050
|
@ -0,0 +1,21 @@
|
|||
*.bak
|
||||
*.bin
|
||||
*.cache
|
||||
*.compiled
|
||||
*.dbg
|
||||
*.dll
|
||||
*.exe
|
||||
*.log
|
||||
*.lps
|
||||
*.npp
|
||||
*.o
|
||||
*.obj
|
||||
*.old
|
||||
*.or
|
||||
*.ppu
|
||||
*.res
|
||||
Thumbs.db
|
||||
backup
|
||||
doc
|
||||
lib
|
||||
temp
|
|
@ -545,7 +545,7 @@ begin
|
|||
{$IFDEF LINUX}
|
||||
with TProcess.Create(nil) do
|
||||
try
|
||||
Executable := 'xdg-open'
|
||||
Executable := 'xdg-open';
|
||||
Parameters.Add(aFilename);
|
||||
Execute;
|
||||
finally
|
||||
|
|
|
@ -1084,7 +1084,7 @@ begin
|
|||
{$IFDEF RELEASE}
|
||||
dmdProc.ShowWindow := swoHIDE;
|
||||
{$ENDIF}
|
||||
dmdproc.Options := [poNewConsole, poStdErrToOutput, poUsePipes];
|
||||
dmdproc.Options := [{$IFDEF WINDOWS}poNewConsole,{$ENDIF} poStdErrToOutput, poUsePipes];
|
||||
|
||||
dmdproc.Executable := 'dmd';
|
||||
aProject.getOpts(dmdproc.Parameters);
|
||||
|
|
Loading…
Reference in New Issue