diff options
author | Andras Timar <atimar@suse.com> | 2011-12-10 16:47:02 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2011-12-10 22:25:28 +0100 |
commit | 3fbedc3e8f65c91999dcee42daa8312e387dcf40 (patch) | |
tree | 77e876cf4bfbe75c9b0126f8590287e1909c5a1b /desktop/WinResTarget_sdraw.mk | |
parent | 8d0816f1cfc3929f261baa0840b9d16ed1b86576 (diff) |
enhance VersionInfo resource of Windows excutables
+ added ProductName (a required parameter), It is LibreOffice
+ CompanyName is configurable, it is $(OOO_VENDOR), that is set
--with-vendor configure switch. If not set, then CompanyName is
empty string which is fine, too.
+ Binary file version and FileVersion string show the same value,
and version number is sane: main version + subversion + microversion
+ build number, such as 3.5.0.0
+ LegalCopyright text is the same as in the About box, year range
can be set in minor.mk
- removed archaic and overcomplicated version number calculating macros
- removed version.lst, copied relevant content to minor.mk
- removed binary RCDATA resources, I don't think they were of any use
Diffstat (limited to 'desktop/WinResTarget_sdraw.mk')
-rw-r--r-- | desktop/WinResTarget_sdraw.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop/WinResTarget_sdraw.mk b/desktop/WinResTarget_sdraw.mk index e208b320558b..9bda5ceb5d48 100644 --- a/desktop/WinResTarget_sdraw.mk +++ b/desktop/WinResTarget_sdraw.mk @@ -37,6 +37,7 @@ $(eval $(call gb_WinResTarget_set_defs,sdraw/src,\ -DRES_APP_NAME=sdraw \ -DRES_APP_ICON=icons/draw_app.ico \ -DVERVARIANT=$(BUILD) \ + -DRES_APP_VENDOR="$(OOO_VENDOR)" \ )) $(eval $(call gb_WinResTarget_add_dependency,sdraw/src,\ @@ -46,3 +47,4 @@ $(eval $(call gb_WinResTarget_add_dependency,sdraw/src,\ $(eval $(call gb_WinResTarget_add_file,sdraw/src,desktop/win32/source/applauncher/launcher)) # vim: set ts=4 sw=4 et: + |