2014-05-07 20:14:59 +01: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,gtktiledviewer))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_set_include,gtktiledviewer,\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
-I$(SRCDIR)/desktop/inc \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_use_externals,gtktiledviewer,\
|
2015-04-22 21:56:45 +02:00
|
|
|
boost_headers \
|
2015-06-10 16:18:06 +05:30
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_add_cxxflags,gtktiledviewer,\
|
|
|
|
$$(GTK3_CFLAGS) \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_add_libs,gtktiledviewer,\
|
|
|
|
$(GTK3_LIBS) \
|
2014-05-07 20:14:59 +01:00
|
|
|
))
|
|
|
|
|
2014-06-25 09:19:02 +01:00
|
|
|
$(eval $(call gb_Executable_use_libraries,gtktiledviewer,\
|
|
|
|
libreofficekitgtk \
|
|
|
|
))
|
|
|
|
|
2014-05-07 20:14:59 +01:00
|
|
|
$(eval $(call gb_Executable_add_libs,gtktiledviewer,\
|
|
|
|
-lX11 \
|
|
|
|
-lXext \
|
2014-05-09 14:39:55 +01:00
|
|
|
-lXrender \
|
2014-05-07 20:14:59 +01:00
|
|
|
-lSM \
|
|
|
|
-lICE \
|
|
|
|
))
|
|
|
|
|
|
|
|
ifeq ($(OS),LINUX)
|
|
|
|
$(eval $(call gb_Executable_add_libs,gtktiledviewer,\
|
|
|
|
-lm \
|
|
|
|
-ldl \
|
|
|
|
-lpthread \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_add_exception_objects,gtktiledviewer,\
|
2014-06-13 11:20:15 +01:00
|
|
|
libreofficekit/qa/gtktiledviewer/gtktiledviewer \
|
2014-05-07 20:14:59 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|