> P.S. How do all you programmers handle the creation/compile/release date
in
> your apps?  Do you use a string resource in the RSC?  Do you have a good
way
> to auto-populate this or do you just manually set it before the last
compile
> prior to release?


    I'm place version info only in 'tver' resource and fill about box
manually. But I have makefile stuff for build number autoincrement. Code
seems to be ugly, but it works. Each makefile execution change build number.
===
# base version number. changed manually.
VERSION = 2.1.

# this rule executes on each makefile execution
.DELETE_ON_ERROR version.rcp: FORCE
 [EMAIL PROTECTED] .version|awk '{ $$a = $$0;} END {$$a++; print $$a; print "VERSION ID
1000 \"$(VERSION)"  $$a "\"" > "/dev/stderr";}' -  >.ver 2> version.rcp
 @mv .ver .version


FORCE:

===





-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to