Files
harbour-core/extras/template/readme.txt
Przemysław Czerpak 96ca3fe470 2014-01-21 20:41 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* Makefile
  * config/*
  * contrib/*
  * doc/*
  * extras/*
  * include/*
  * lib/*
  * package/*
  * src/*
  * tests/*
  * utils/*
    * removed empty lines left after removed '$' + 'Id' + '$' identifiers
2014-01-21 20:41:05 +01:00

29 lines
504 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]