microm8-gui/poc.lpr

24 lines
466 B
ObjectPascal
Raw Normal View History

2019-03-31 03:59:50 +00:00
program poc;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
2019-04-06 08:57:29 +00:00
Forms, lazopenglcontext, indylaz, main, mixer
2019-03-31 03:59:50 +00:00
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TGUIForm, GUIForm);
2019-04-06 08:57:29 +00:00
Application.CreateForm(TfrmMixer, frmMixer);
2019-03-31 03:59:50 +00:00
Application.Run;
end.