Files
harbour-core/extras/template/readme.txt
vszakats 9687850865 2013-03-16 02:10 UTC+0100 Viktor Szakats (harbour syenar.net)
* (all files)
    * stripped svn header
    * minor cleanups
    ; use following command to find out the history of files:
       git log
       git log --follow
       git blame
       git annotate
2013-03-16 02:11:42 +01:00

30 lines
505 B
Plaintext

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]