summaryrefslogtreecommitdiffstats
path: root/libreofficekit/Executable_tilebench.mk
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2014-10-01 22:14:49 +0100
committerMichael Meeks <michael.meeks@collabora.com>2014-10-02 00:23:06 +0100
commit87fad21582fceb200e3630e9ec10a873f7d7a3ed (patch)
tree65d82d1304c940c554be68894fc1dbf695a9e29c /libreofficekit/Executable_tilebench.mk
parentgbuild-to-ide: Make it work for GNU make 4.x (diff)
downloadcore-87fad21582fceb200e3630e9ec10a873f7d7a3ed.tar.gz
core-87fad21582fceb200e3630e9ec10a873f7d7a3ed.zip
LOK: Add a tiled rendering testbench.
Change-Id: I631c0506f427d974c3dd4c75484aa25603100895
Diffstat (limited to 'libreofficekit/Executable_tilebench.mk')
-rw-r--r--libreofficekit/Executable_tilebench.mk32
1 files changed, 32 insertions, 0 deletions
diff --git a/libreofficekit/Executable_tilebench.mk b/libreofficekit/Executable_tilebench.mk
new file mode 100644
index 000000000000..11e73dead0bd
--- /dev/null
+++ b/libreofficekit/Executable_tilebench.mk
@@ -0,0 +1,32 @@
+# -*- 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,tilebench))
+
+$(eval $(call gb_Executable_set_include,tilebench,\
+ $$(INCLUDE) \
+ -I$(SRCDIR)/desktop/inc \
+))
+
+$(eval $(call gb_Executable_use_libraries,tilebench,\
+ libreofficekitgtk \
+ sal \
+))
+
+$(eval $(call gb_Executable_add_libs,tilebench,\
+ -lm \
+ -ldl \
+ -lpthread \
+))
+
+$(eval $(call gb_Executable_add_exception_objects,tilebench,\
+ libreofficekit/qa/tilebench/tilebench \
+))
+
+# vim: set noet sw=4 ts=4: