41 lines
858 B
ObjectPascal

{
* VIDemo.dpr
*
* Project file for Version Information Component VIDemo demo program.
*
* $Rev: 1118 $
* $Date: 2013-01-14 00:19:04 +0000 (Mon, 14 Jan 2013) $
*
* Any copyright in this file is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
}
program VIDemo;
{$UNDEF Supports_RTLNameSpaces}
{$IFDEF CONDITIONALEXPRESSIONS}
{$IF CompilerVersion >= 15.0} // >= Delphi 7
{$WARN UNSAFE_CODE OFF}
{$IFEND}
{$IF CompilerVersion >= 23.0} // Delphi XE2
{$DEFINE Supports_RTLNameSpaces}
{$IFEND}
{$ENDIF}
uses
{$IFDEF Supports_RTLNameSpaces}
Vcl.Forms,
{$ELSE}
Forms,
{$ENDIF}
FmVIDemo in 'FmVIDemo.pas' {MainForm};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'Version Info Component Demo';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.