source: trunk/ConfigApps/ConfigApps.pas@ 433

Last change on this file since 433 was 413, checked in by ataylor, 7 years ago

Revamp of build system, and added ConfigApps to repository.

File size: 217 bytes
RevLine 
[413]1Program ConfigApps;
2
3Uses
4 Forms, Graphics, MainFormUnit;
5
6{$r ConfigApps.scu}
7
8Begin
9 Application.Create;
10 Application.CreateForm (TMainForm, MainForm);
11 Application.Run;
12 Application.Destroy;
13End.
Note: See TracBrowser for help on using the repository browser.