[SOLVED] Automatically increment a build number
-
I need to display the version of the software I am building. It will have the following nomenclature: majorVersion.MinorVersion.BuildNumber
Any ideas on how I can increment a build number each time I build and how I can access this value from the program at run time?
-
you can have a look at this gitorious project: "auto incr build nr":https://www.gitorious.org/giesbert-s-software/autoincreasebuildnr and at "this":https://www.gitorious.org/giesbert-s-software/giesbert-s-world-clock/blobs/master/GiWorldClock.pro pro file, the tool is used there.
-
I ended up adding these lines to the .pro file:
QMAKE_EXTRA_TARGETS += buildNo
buildNo.commands = ./buildNoScript
PRE_TARGETDEPS += buildNo # adding this removes the necessity to use .targetThen I made a simple script called buildNoScript that calls a small program that updates build info in a file (it reads the build no from that file first then increments it and writes it back).