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}
|
{$IFDEF LINUX}
|
||||||
with TProcess.Create(nil) do
|
with TProcess.Create(nil) do
|
||||||
try
|
try
|
||||||
Executable := 'xdg-open'
|
Executable := 'xdg-open';
|
||||||
Parameters.Add(aFilename);
|
Parameters.Add(aFilename);
|
||||||
Execute;
|
Execute;
|
||||||
finally
|
finally
|
||||||
|
|
|
@ -1084,7 +1084,7 @@ begin
|
||||||
{$IFDEF RELEASE}
|
{$IFDEF RELEASE}
|
||||||
dmdProc.ShowWindow := swoHIDE;
|
dmdProc.ShowWindow := swoHIDE;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
dmdproc.Options := [poNewConsole, poStdErrToOutput, poUsePipes];
|
dmdproc.Options := [{$IFDEF WINDOWS}poNewConsole,{$ENDIF} poStdErrToOutput, poUsePipes];
|
||||||
|
|
||||||
dmdproc.Executable := 'dmd';
|
dmdproc.Executable := 'dmd';
|
||||||
aProject.getOpts(dmdproc.Parameters);
|
aProject.getOpts(dmdproc.Parameters);
|
||||||
|
|
Loading…
Reference in New Issue