From 04b70c682e2cdc52b144961a83d05fd203de6884 Mon Sep 17 00:00:00 2001 From: Zolnai Tamás Date: Thu, 13 Mar 2014 14:22:59 +0100 Subject: Move OpenGLRender to vcl Change-Id: I6383ae3f94fc18aec92596b9d857d3fde5869dd6 --- vcl/Library_vclopengl.mk | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 vcl/Library_vclopengl.mk (limited to 'vcl/Library_vclopengl.mk') 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: -- cgit