UnitCommandLine: New unit called 'UnitCommandLine'.
[WineLauncher.git] / Functions / Initialization / UnitInitialization.pas
blob74433112afb94dc367e03ef1295fda744dbcc902
1 unit UnitInitialization;
3 {$mode objfpc}{$H+}
5 interface
7 uses
8 Classes, SysUtils, LCLVersion;
10 const
11 WineLauncherVersion = {$I VERSION.inc};
12 BuiltWithFpcVersion = ('Built with FPC version: ' + {$I %FPCVERSION%});
13 BuiltWithLazarusVersion = ('Built with lazarus version: ' + lcl_version);
15 implementation
20 end.