f1c1a1b809
The "minweld" is a minimal standalone vcl application that uses the LibreOffice vcl weld framework to display the "tip of the day" dialog on the screen. Upon clicking on the "Next Tip", a counter is incremented and the text label containing its value is displayed/updated in the center of the dialog box. One can run the application by invoking: ./bin/run minweld This example uses cui/ui/tipofthedaydialog.ui for the UI, but only uses a few elements of it. Change-Id: If304c60ddb262182cf23438ed1f83dba85e66391 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176610 Reviewed-by: Hossein <hossein@libreoffice.org> Tested-by: Jenkins
38 lines
821 B
Makefile
38 lines
821 B
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# 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/.
|
|
#
|
|
|
|
$(eval $(call gb_Executable_Executable,minweld))
|
|
|
|
$(eval $(call gb_Executable_use_api,minweld,\
|
|
offapi \
|
|
udkapi \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_set_include,minweld,\
|
|
$$(INCLUDE) \
|
|
-I$(SRCDIR)/vcl/inc \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_use_libraries,minweld,\
|
|
tl \
|
|
sal \
|
|
vcl \
|
|
cppu \
|
|
cppuhelper \
|
|
comphelper \
|
|
i18nlangtag \
|
|
fwk \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_add_exception_objects,minweld,\
|
|
vcl/workben/minweld \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|