You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8718 8e941d3f-bd1b-0410-a28a-d453659cc2b4
27 lines
374 B
ObjectPascal
27 lines
374 B
ObjectPascal
program CodeGen;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
{.$MODE Delphi}
|
|
|
|
uses
|
|
Interfaces,
|
|
LCLVersion,
|
|
Forms,
|
|
CodeGenU in 'CODEGENU.pas' {CodeGenFrm}, tponguard;
|
|
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
{$IF LCL_FullVersion >= 3000000}
|
|
Application.Scaled:=True;
|
|
{$ENDIF}
|
|
Application.Title:='';
|
|
Application.Initialize;
|
|
Application.CreateForm(TCodeGenFrm, CodeGenFrm);
|
|
Application.Run;
|
|
end.
|
|
|
|
|