summaryrefslogtreecommitdiffstats
path: root/external/epoxy/Library_epoxy.mk
blob: 81c35d695997846e289088a5d9e9d6340c77f1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- 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,epoxy))

$(eval $(call gb_Library_use_unpacked,epoxy,epoxy))

$(eval $(call gb_Library_set_warnings_disabled,epoxy))

$(eval $(call gb_Library_set_include,epoxy,\
	-I$(call gb_UnpackedTarball_get_dir,epoxy)/include \
	-I$(call gb_UnpackedTarball_get_dir,epoxy)/src \
	$$(INCLUDE) \
))

ifeq ($(OS),LINUX)
$(eval $(call gb_Library_add_libs,epoxy,\
	-ldl \
))
endif

$(eval $(call gb_Library_add_generated_cobjects,epoxy,\
	UnpackedTarball/epoxy/src/dispatch_common \
	UnpackedTarball/epoxy/src/gl_generated_dispatch \
))

ifeq ($(OS),WNT)
$(eval $(call gb_Library_add_generated_cobjects,epoxy,\
	UnpackedTarball/epoxy/src/dispatch_wgl \
	UnpackedTarball/epoxy/src/wgl_generated_dispatch \
))
else ifneq ($(filter iOS MACOSX,$(OS)),)
# nothing
else ifeq ($(OS),ANDROID)
$(eval $(call gb_Library_add_generated_cobjects,epoxy,\
	UnpackedTarball/epoxy/src/dispatch_egl \
	UnpackedTarball/epoxy/src/egl_generated_dispatch \
))
else
$(eval $(call gb_Library_add_generated_cobjects,epoxy,\
	UnpackedTarball/epoxy/src/dispatch_glx \
	UnpackedTarball/epoxy/src/glx_generated_dispatch \
))
ifeq ($(ENABLE_GTK3),TRUE)
$(eval $(call gb_Library_add_cflags,epoxy,\
	-DPLATFORM_HAS_EGL=1 \
))
$(eval $(call gb_Library_add_generated_cobjects,epoxy,\
	UnpackedTarball/epoxy/src/dispatch_egl \
	UnpackedTarball/epoxy/src/egl_generated_dispatch \
))
else
$(eval $(call gb_Library_add_cflags,epoxy,\
	-DPLATFORM_HAS_EGL=0 \
))
endif
endif

# vim: set noet sw=4 ts=4: