mirror of https://gitlab.com/basile.b/dexed.git
dcd integration: process can be located elsewhere if their path is known
This commit is contained in:
parent
cfc89ff0d4
commit
aa35683cf9
|
@ -52,11 +52,6 @@
|
|||
<Debugging>
|
||||
<UseHeaptrc Value="True"/>
|
||||
</Debugging>
|
||||
<Options>
|
||||
<Win32>
|
||||
<GraphicApplication Value="True"/>
|
||||
</Win32>
|
||||
</Options>
|
||||
</Linking>
|
||||
<Other>
|
||||
<CompilerMessages>
|
||||
|
|
|
@ -68,7 +68,7 @@ begin
|
|||
if DCD_server <> nil then
|
||||
FreeAndNil(DCD_server);
|
||||
DCD_server := TProcess.Create(nil);
|
||||
DCD_server.Executable := extractFilePath(application.ExeName) + directorySeparator + 'dcd-server' + exeExt;
|
||||
DCD_server.Executable := 'dcd-server' + exeExt;
|
||||
DCD_server.Options := [poUsePipes{$IFDEF WINDOWS}, poNewConsole{$ENDIF}];
|
||||
DCD_server.ShowWindow := swoHIDE;
|
||||
end;
|
||||
|
@ -198,10 +198,10 @@ end;
|
|||
initialization
|
||||
createServer;
|
||||
DCD_client := TProcess.Create(nil);
|
||||
DCD_client.Executable := extractFilePath(application.ExeName) + directorySeparator + 'dcd-client' + exeExt;
|
||||
DCD_client.Executable := 'dcd-client' + exeExt;
|
||||
DCD_client.Options := [poUsePipes{$IFDEF WINDOWS}, poNewConsole{$ENDIF}];
|
||||
DCD_client.ShowWindow := swoHIDE;
|
||||
dcdOn := fileExists(DCD_server.Executable) and fileExists(DCD_client.Executable);
|
||||
dcdOn := exeInSysPath(DCD_server.Executable) and exeInSysPath(DCD_client.Executable);
|
||||
lines := TStringList.Create;
|
||||
finalization
|
||||
DCD_server.Active := false;
|
||||
|
|
|
@ -7,7 +7,7 @@ interface
|
|||
uses
|
||||
Classes, SysUtils, SynEdit, SynMemo, ce_d2syn, SynEditHighlighter, controls,
|
||||
lcltype, LazSynEditText, SynPluginSyncroEdit, SynEditKeyCmds, ce_project,
|
||||
SynHighlighterLFM, SynEditMouseCmds, ce_common, ce_observer, menus;
|
||||
SynHighlighterLFM, SynEditMouseCmds, ce_common, ce_observer;
|
||||
|
||||
type
|
||||
TCESynMemo = class(TSynMemo)
|
||||
|
|
Loading…
Reference in New Issue