summaryrefslogtreecommitdiff
path: root/tools/langpackmgr/langpackmgr.dpr
diff options
context:
space:
mode:
Diffstat (limited to 'tools/langpackmgr/langpackmgr.dpr')
-rw-r--r--tools/langpackmgr/langpackmgr.dpr21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/langpackmgr/langpackmgr.dpr b/tools/langpackmgr/langpackmgr.dpr
new file mode 100644
index 0000000000..69d75469eb
--- /dev/null
+++ b/tools/langpackmgr/langpackmgr.dpr
@@ -0,0 +1,21 @@
+program langpackmgr;
+
+uses
+ Vcl.Forms,
+ Windows,
+ Unit1 in 'Unit1.pas' {Form1};
+
+{$SETPEFlAGS IMAGE_FILE_RELOCS_STRIPPED or IMAGE_FILE_DEBUG_STRIPPED or
+ IMAGE_FILE_LINE_NUMS_STRIPPED or IMAGE_FILE_LOCAL_SYMS_STRIPPED or
+ IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP or IMAGE_FILE_NET_RUN_FROM_SWAP}
+ {$WEAKLINKRTTI ON}
+ {$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])}
+{$R *.res}
+
+begin
+ Application.Initialize;
+ Application.MainFormOnTaskbar := True;
+ Application.Title := 'Miranda LangPack Manager';
+ Application.CreateForm(TForm1, Form1);
+ Application.Run;
+end.