diff options
Diffstat (limited to 'tools/langpackmgr/langpackmgr.lpr')
-rw-r--r-- | tools/langpackmgr/langpackmgr.lpr | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/langpackmgr/langpackmgr.lpr b/tools/langpackmgr/langpackmgr.lpr new file mode 100644 index 0000000000..2de2b5decd --- /dev/null +++ b/tools/langpackmgr/langpackmgr.lpr @@ -0,0 +1,21 @@ +program langpackmgr;
+
+{$mode objfpc}{$H+}
+
+uses
+ {$IFDEF UNIX}{$IFDEF UseCThreads}
+ cthreads,
+ {$ENDIF}{$ENDIF}
+ Interfaces, // this includes the LCL widgetset
+ Forms, unit1
+ { you can add units after this };
+
+{$R *.res}
+
+begin
+ RequireDerivedFormResource := True;
+ Application.Initialize;
+ Application.CreateForm(TForm1, Form1);
+ Application.Run;
+end.
+
|