3b3cf0ecae
Change-Id: I996f88544c4cdedaf8aa047abb1888409b949800
25 lines
981 B
Makefile
25 lines
981 B
Makefile
# -*- 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_ExternalPackage_ExternalPackage,glew,glew))
|
|
|
|
$(eval $(call gb_ExternalPackage_use_external_project,glew,glew))
|
|
|
|
ifeq ($(OS),MACOSX)
|
|
$(eval $(call gb_ExternalPackage_add_file,glew,$(LIBO_LIB_FOLDER)/libGLEW.1.10.0.dylib,lib/libGLEW.1.10.0.dylib))
|
|
else ifeq ($(OS)-$(COM),WNT-GCC)
|
|
else ifeq ($(COM),MSC)
|
|
$(eval $(call gb_ExternalPackage_add_files,glew,$(LIBO_LIB_FOLDER), \
|
|
bin/$(if $(MSVC_USE_DEBUG_RUNTIME),Debug/Win32/glew32d.dll,Release/Win32/glew32.dll) \
|
|
))
|
|
else ifeq ($(filter IOS ANDROID,$(OS)),)
|
|
$(eval $(call gb_ExternalPackage_add_file,glew,$(LIBO_LIB_FOLDER)/libGLEW.so.1.10,lib/libGLEW.so.1.10.0))
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|