summaryrefslogtreecommitdiff
path: root/vcl/Library_vclopengl.mk
diff options
context:
space:
mode:
authorZolnai Tamás <tamas.zolnai@collabora.com>2014-03-13 14:22:59 +0100
committerZolnai Tamás <tamas.zolnai@collabora.com>2014-03-14 19:59:21 +0100
commit04b70c682e2cdc52b144961a83d05fd203de6884 (patch)
tree7a88b6307b0d229575accdedebb5ee6a6e002ff0 /vcl/Library_vclopengl.mk
parent84f4de3b65cd0f861e80c69b773004f28f9f8d9f (diff)
Move OpenGLRender to vcl
Change-Id: I6383ae3f94fc18aec92596b9d857d3fde5869dd6
Diffstat (limited to 'vcl/Library_vclopengl.mk')
-rw-r--r--vcl/Library_vclopengl.mk59
1 files changed, 59 insertions, 0 deletions
diff --git a/vcl/Library_vclopengl.mk b/vcl/Library_vclopengl.mk
new file mode 100644
index 000000000000..5c52add5f3aa
--- /dev/null
+++ b/vcl/Library_vclopengl.mk
@@ -0,0 +1,59 @@
+# -*- 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,vclopengl))
+
+$(eval $(call gb_Library_set_include,vclopengl,\
+ $$(INCLUDE) \
+))
+
+$(eval $(call gb_Library_use_externals,vclopengl,\
+ boost_headers \
+ mdds_headers \
+ glm_headers \
+ mesa_headers \
+ glew \
+))
+
+$(eval $(call gb_Library_use_sdk_api,vclopengl))
+
+$(eval $(call gb_Library_use_libraries,vclopengl,\
+ comphelper \
+ cppu \
+ cppuhelper \
+ editeng \
+ sal \
+ vcl \
+ $(gb_UWINAPI) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,vclopengl,\
+ vcl/source/opengl/OpenGLRender \
+))
+
+ifeq ($(strip $(OS)),WNT)
+$(eval $(call gb_Library_use_system_win32_libs,vclopengl,\
+ opengl32 \
+ gdi32 \
+ glu32 \
+))
+else ifeq ($(OS),MACOSX)
+$(eval $(call gb_Library_use_system_darwin_frameworks,vclopengl,\
+ OpenGL \
+))
+else ifeq ($(OS),LINUX)
+$(eval $(call gb_Library_add_libs,vclopengl,\
+ -ldl \
+ -lGL \
+ -lGLU \
+ -lX11 \
+))
+endif
+
+# vim: set noet sw=4 ts=4: