diff --git a/applications/wikihelp/src/wikihelp.lpr b/applications/wikihelp/src/wikihelp.lpr new file mode 100644 index 000000000..027ad035e --- /dev/null +++ b/applications/wikihelp/src/wikihelp.lpr @@ -0,0 +1,18 @@ +program wikihelp; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Interfaces, // this includes the LCL widgetset + Forms + { add your units here }, uMain; + +begin + Application.Initialize; + Application.CreateForm(TfWikiHelp, fWikiHelp); + Application.Run; +end. +