fixes for the linux version

This commit is contained in:
Basile Burg 2014-07-21 03:49:45 +02:00
parent be7ba8d1a2
commit 9ab21f2050
3 changed files with 23 additions and 2 deletions

21
.gitignore vendored Normal file
View File

@ -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

View File

@ -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

View File

@ -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);