-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCompileFunctUnit.pas
69 lines (58 loc) · 1.6 KB
/
CompileFunctUnit.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
unit CompileFunctUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TFormCompileFunct = class(TForm)
LabelInfo1: TLabel;
MemoInfo: TMemo;
MemoTextCode: TMemo;
ButtonClose: TButton;
ButtonCompile: TButton;
ButtonLog: TButton;
procedure ButtonCloseClick(Sender: TObject);
procedure ButtonCompileClick(Sender: TObject);
procedure ButtonLogClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FormCompileFunct: TFormCompileFunct;
Path:string;
implementation
uses ShellAPI;
{$R *.dfm}
procedure TFormCompileFunct.ButtonCloseClick(Sender: TObject);
begin
Close;
end;
procedure TFormCompileFunct.ButtonCompileClick(Sender: TObject);
var FName:string;
CMD:TStrings;
begin
Path:=ExtractFilePath(ParamStr(0));
try
FName:=MemoTextCode.Lines.Strings[0];
FName:=Copy(FName, 9, Length(FName)-9);
MemoTextCode.Lines.SaveToFile(Path+'CompileFunct\'+FName+'.dpr');
CMD:=TStringList.Create;
CMD.Add('dcc32 '+FName+'.dpr'+' > "Result.log"');
CMD.SaveToFile(Path+'CompileFunct\'+'temp.cmd');
CMD.Free;
ShellExecute(Handle, 'open', PChar(Path+'CompileFunct\'+'temp.cmd'), '', PChar(Path+'CompileFunct\'), SW_NORMAL);
except
begin
MessageBox(0, 'Îøèáêà ïðè êîìïèëèðîâàíèè.', '', MB_ICONWARNING or MB_OK);
Exit;
end;
end;
end;
procedure TFormCompileFunct.ButtonLogClick(Sender: TObject);
begin
if FileExists(Path+'CompileFunct\Result.log') then
ShellExecute(Handle, 'open', PChar(Path+'CompileFunct\Result.log'), '', '', SW_NORMAL);
end;
end.