Files
harbour-core/extras/template
Viktor Szakats ec87fbc449 2013-03-24 20:22 UTC+0100 Viktor Szakats (harbour syenar.net)
* contrib/hbct/doc/en/*.txt
  * contrib/hbgt/doc/en/hbgt.txt
  * contrib/hbmisc/doc/en/*.txt
  * contrib/hbziparc/doc/en/hbziparc.txt
  * contrib/rddads/doc/en/adsfuncs.txt
  * doc/en/*.txt
    ! space after comma
    ! unicode fix
    ! minor corrections

  * extras/template/tests/hbmk.hbm
    * cleaned recently added comment
2013-03-24 20:22:55 +01:00
..

Harbour library project template
================================

Build static lib:
   $ hbmk2 hbtpl.hbp

Build dynamic lib:
   $ hbmk2 -hbdyn hbtpl.hbp

Build and run sample and test code using:
   $ cd tests
   $ hbmk2 sample
   $ sample
   $ hbmk2 test hbtest.hbc
   $ test

Run sample and test code using:
   $ hbrun tests/sample.prg
   $ hbrun tests/test.prg

Use lib from command prompt ("dot prompt"):
   $ cd tests
   $ hbrun

   . ? HBTPL_MYCONSTANT
   . ? hbtpl_MyPublicFunction()

[vszakats]