2013-10-18 05:15:10 -05:00
|
|
|
# -*- 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,xid-fullscreen-on-all-monitors))
|
|
|
|
|
2014-06-10 11:32:51 -05:00
|
|
|
ifeq ($(filter ANDROID WNT DRAGONFLY FREEBSD NETBSD OPENBSD MACOSX,$(OS)),)
|
2013-10-18 05:15:10 -05:00
|
|
|
$(eval $(call gb_Executable_add_libs,xid-fullscreen-on-all-monitors,\
|
|
|
|
-ldl \
|
|
|
|
))
|
2014-06-10 11:32:51 -05:00
|
|
|
endif
|
2013-10-18 05:15:10 -05:00
|
|
|
|
|
|
|
$(eval $(call gb_Executable_add_cobjects,xid-fullscreen-on-all-monitors,\
|
2015-11-16 09:38:03 -06:00
|
|
|
vcl/unx/gtk/xid_fullscreen_on_all_monitors \
|
2013-10-18 05:15:10 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|