HARBOUR MINIGUI LIBRARY

(c) 2002-2009 Roberto Lopez <harbourminigui@gmail.com>. All rights reserved.

http://harbourminigui.googlepages.com

 

 

Building HMG applications:

 

 

- COMPILE.BAT

 

      The easiest way is to use the 'Compile.Bat' file located at \hmg\batch

      folder.

 

      Usage:

 

            Compile <MainProgramName> [/d | /c]

 

            /d: Debugger Support

            /c: Console/Mixed Mode

 

      You must not include extension for <MainProgramName>

 

- Harbour MiniGUI IDE

 

      This programming environment allows visual form editing and

      application build.

 

      Environment settings (MingW Folder, Harbour Folder, MiniGUI Folder and

      Program Editor) are stored in 'ide.cfg' file, located at IDE folder.

      You can interactively change default settings

      (Main Menu->Tools->Preferences).

 

Command Line (optional) Parameters

 

      <ProjectFileName>

      /A (Automatic build

      /D (Debugger Support)

      /C (Console / Mixed Mode)

      /F (Full Build)

      /R (Run After Build)

      /I:<path1;path2;...pathn> (Additional Include Paths)

      /L:<Lib1;lib2;...libn> (Additional Libraries)

 

      Library names must not include the 'lib' prefix nor '.a' extension.

      So, for include the library 'libmythings.a' you must use 'mythings'

      name.

 

      Parameters /D /C /F /R /I and /L are ignored unless /A is

      specified.