microm8-gui/poc.lpr

24 lines
481 B
ObjectPascal
Raw Permalink Normal View History

2019-04-11 02:49:48 +00:00
program poc;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
2019-04-14 00:43:40 +00:00
Forms, lazopenglcontext, main, mixer;
2019-04-11 02:49:48 +00:00
{$R *.res}
begin
RequireDerivedFormResource:=True;
2019-04-13 10:31:33 +00:00
Application.Title:='microm8-gui';
2019-04-11 02:49:48 +00:00
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TGUIForm, GUIForm);
Application.CreateForm(TfrmMixer, frmMixer);
Application.Run;
end.