Hi all,
I wonder if there is a macro able to get the current version/build number of a project, like $(ProjOutDir), $(TargetCPU), $(TargetOS) and so o.
I've searched in wiki without success.
If yes, is there anyway to use this kind of macro in code. The goal is to write a function able to return the current version of the binary, that is something like that:
function Ver: String;
begin
result := $(ProjVer);
end;
My project is under Mac OS X, and unix binaries can not include executable version as Windows binaries.
Any idea ?
thanks,
André.