2011-12-06 15:15:10 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-09-15 07:44:34 -05:00
|
|
|
#
|
2013-04-19 15:10:42 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-09-15 07:44:34 -05:00
|
|
|
#
|
2013-04-19 15:10:42 -05:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-09-15 07:44:34 -05:00
|
|
|
#
|
|
|
|
|
2013-04-24 09:58:51 -05:00
|
|
|
$(eval $(call gb_WinResTarget_WinResTarget,sbase/launcher))
|
2011-09-15 07:44:34 -05:00
|
|
|
|
2013-04-24 09:58:51 -05:00
|
|
|
$(eval $(call gb_WinResTarget_set_include,sbase/launcher,\
|
2011-09-15 07:44:34 -05:00
|
|
|
$$(INCLUDE) \
|
|
|
|
-I$(SRCDIR)/sysui/desktop \
|
|
|
|
))
|
|
|
|
|
2013-04-24 09:58:51 -05:00
|
|
|
$(eval $(call gb_WinResTarget_add_defs,sbase/launcher,\
|
2011-09-15 07:44:34 -05:00
|
|
|
-DRES_APP_NAME=sbase \
|
2013-02-28 06:17:39 -06:00
|
|
|
-DRES_APP_FILEDESC="$(PRODUCTNAME) Base" \
|
2011-12-02 06:43:18 -06:00
|
|
|
-DRES_APP_ICON=icons/base_app.ico \
|
2013-03-01 06:50:16 -06:00
|
|
|
-DVERVARIANT=$(LIBO_VERSION_PATCH) \
|
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
2011-12-10 09:47:02 -06:00
|
|
|
-DRES_APP_VENDOR="$(OOO_VENDOR)" \
|
2011-09-15 07:44:34 -05:00
|
|
|
))
|
|
|
|
|
2013-04-24 09:58:51 -05:00
|
|
|
$(eval $(call gb_WinResTarget_add_dependencies,sbase/launcher,\
|
2011-12-02 06:43:18 -06:00
|
|
|
sysui/desktop/icons/base_app.ico \
|
2011-09-15 07:44:34 -05:00
|
|
|
))
|
|
|
|
|
2013-04-24 09:58:51 -05:00
|
|
|
$(eval $(call gb_WinResTarget_set_rcfile,sbase/launcher,desktop/win32/source/applauncher/launcher))
|
2011-09-15 07:44:34 -05:00
|
|
|
|
|
|
|
# vim: set ts=4 sw=4 et:
|