summaryrefslogtreecommitdiffstats
path: root/libreofficekit/Library_libreofficekitgtk.mk
diff options
context:
space:
mode:
authorAndrzej Hunt <andrzej.hunt@collabora.com>2014-06-12 17:38:10 +0100
committerAndrzej Hunt <andrzej.hunt@collabora.com>2014-06-25 13:04:31 +0100
commitd465dfb209948a795e393bfc4a05485e893f24d0 (patch)
tree34ac06cad54d57d31c332f29d701ac25ae437c0a /libreofficekit/Library_libreofficekitgtk.mk
parentRemove outdated includes. (diff)
downloadcore-d465dfb209948a795e393bfc4a05485e893f24d0.tar.gz
core-d465dfb209948a795e393bfc4a05485e893f24d0.zip
Implement LibreOfficeKit gtk+ viewer widget.
Very basic, but works. Change-Id: I0c521e833b53e13065e0be48e6fa767e44b29787
Diffstat (limited to 'libreofficekit/Library_libreofficekitgtk.mk')
-rw-r--r--libreofficekit/Library_libreofficekitgtk.mk31
1 files changed, 31 insertions, 0 deletions
diff --git a/libreofficekit/Library_libreofficekitgtk.mk b/libreofficekit/Library_libreofficekitgtk.mk
new file mode 100644
index 000000000000..be485cdf038f
--- /dev/null
+++ b/libreofficekit/Library_libreofficekitgtk.mk
@@ -0,0 +1,31 @@
+# -*- 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_Library_Library,libreofficekitgtk))
+
+
+$(eval $(call gb_Library_use_externals,libreofficekitgtk,\
+ gtk \
+))
+
+$(eval $(call gb_Library_use_static_libraries,libreofficekitgtk,\
+ libreofficekit \
+))
+
+$(eval $(call gb_Library_add_cobjects,libreofficekitgtk,\
+ libreofficekit/source/gtk/lokdocview \
+))
+
+ifeq ($(OS),LINUX)
+$(eval $(call gb_Library_add_libs,libreofficekitgtk,\
+ -ldl \
+))
+endif
+
+# vim: set noet sw=4 ts=4: