microm8-gui/poc.lpr

24 lines
480 B
ObjectPascal
Raw 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
Forms, lazopenglcontext, main, mixer
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TGUIForm, GUIForm);
Application.CreateForm(TfrmMixer, frmMixer);
Application.Run;
end.