summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2014-05-13 12:30:48 -0700
committerEric Anholt <eric@anholt.net>2014-05-13 12:36:43 -0700
commitc7a91844deb0232dd398a87090a556bcc5069eec (patch)
treedb60b3b50222c1c4cb62db8397260fe0d543a088
parent568533441ffe113ac919ce3db16fcde8126a9b70 (diff)
downloadlibepoxy-c7a91844deb0232dd398a87090a556bcc5069eec.tar.gz
Don't forget to install the wgl headers.
Fixes #26
-rw-r--r--include/epoxy/Makefile.am5
-rw-r--r--src/Makefile.am1
2 files changed, 6 insertions, 0 deletions
diff --git a/include/epoxy/Makefile.am b/include/epoxy/Makefile.am
index 8ada489..b5b94a6 100644
--- a/include/epoxy/Makefile.am
+++ b/include/epoxy/Makefile.am
@@ -25,6 +25,7 @@ epoxyinclude_HEADERS = \
gl.h \
$(EGL_INCLUDES) \
$(GLX_INCLUDES) \
+ $(WGL_INCLUDES) \
$()
if BUILD_EGL
@@ -34,3 +35,7 @@ endif
if BUILD_GLX
GLX_INCLUDES = glx.h
endif
+
+if BUILD_WGL
+WGL_INCLUDES = wgl.h
+endif
diff --git a/src/Makefile.am b/src/Makefile.am
index 1ca0d68..8e20cd6 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -37,6 +37,7 @@ epoxyinclude_DATA = \
$(GENERATED_GL_INCLUDES) \
$(INSTALL_GLX_INCLUDES) \
$(INSTALL_EGL_INCLUDES) \
+ $(INSTALL_WGL_INCLUDES) \
$()
if BUILD_EGL