What are the differences observed in a Jamfile if we have to use locale kit?
Thx in advance.
Two main differences:
- Your application/binary rule (Application for instance), must have $(HAIKU_LOCALE_LIBS) added to his libs list
- A DoCatalogs rule should be defined too, in order to create catalogued items from
source. The syntax of this rule is as follow:
DoCatalogs YourApplicationBinaryName : x-vnd.YourApplicationSignature : list of catalogued source files ;
Here’s AboutSystem Jamfile, doing exactly that:
http://dev.haiku-os.org/browser/haiku/trunk/src/apps/aboutsystem/Jamfile
What if the app is a standalone app instead of integrating into Haiku ??