summaryrefslogtreecommitdiff
path: root/include/GL
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2018-01-31 13:31:53 -0500
committerAdam Jackson <ajax@redhat.com>2018-02-01 15:01:56 -0500
commit193b75db8c1aa9d91d079901d7da98ec72810378 (patch)
tree016f228b0046db822ec41668100a899a13143a49 /include/GL
parent0d4330017c811227f8424ecbd061d987f39b4e9f (diff)
meson: Spread the install rules into their subdirs
Mostly this is is so the generated Xpoll.h can be emitted into a usable directory when we build as a subproject. Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'include/GL')
-rw-r--r--include/GL/internal/meson.build1
-rw-r--r--include/GL/meson.build7
2 files changed, 8 insertions, 0 deletions
diff --git a/include/GL/internal/meson.build b/include/GL/internal/meson.build
new file mode 100644
index 0000000..158e0cc
--- /dev/null
+++ b/include/GL/internal/meson.build
@@ -0,0 +1 @@
+install_headers('glcore.h', subdir : 'GL/internal')
diff --git a/include/GL/meson.build b/include/GL/meson.build
new file mode 100644
index 0000000..10da898
--- /dev/null
+++ b/include/GL/meson.build
@@ -0,0 +1,7 @@
+install_headers(
+ 'glxint.h',
+ 'glxmd.h',
+ 'glxproto.h',
+ 'glxtokens.h',
+ subdir : 'GL')
+subdir('internal')