mirror of
https://github.com/paleotronic/microm8-gui.git
synced 2025-02-18 07:31:07 +00:00
24 lines
466 B
ObjectPascal
24 lines
466 B
ObjectPascal
program poc;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, lazopenglcontext, indylaz, 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.
|
|
|