Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <janne-vlc@jannau.net>2020-08-22 13:19:24 +0300
committerJanne Grunau <janne-vlc@jannau.net>2020-08-23 01:32:43 +0300
commit1bcc5ecd8a0a06be8eb964213ceae83f5d1e6d92 (patch)
treefeb7859cd21aace6b6b16e1fca74b8b88c33c362 /include
parent791c4697219b27ab79fb4536725a0a7d58c014d3 (diff)
tests: test stand alone API header compilation
Errors on C11 features like anonymous strucs/unions.
Diffstat (limited to 'include')
-rw-r--r--include/dav1d/meson.build14
1 files changed, 9 insertions, 5 deletions
diff --git a/include/dav1d/meson.build b/include/dav1d/meson.build
index b5649d3..19f0ad4 100644
--- a/include/dav1d/meson.build
+++ b/include/dav1d/meson.build
@@ -31,11 +31,15 @@ version_h_target = configure_file(input: 'version.h.in',
output: 'version.h',
configuration: version_h_data)
+dav1d_api_headers = files(
+ 'common.h',
+ 'data.h',
+ 'dav1d.h',
+ 'headers.h',
+ 'picture.h',
+ )
+
# install headers
-install_headers('common.h',
- 'data.h',
- 'dav1d.h',
- 'headers.h',
- 'picture.h',
+install_headers(dav1d_api_headers,
version_h_target,
subdir : 'dav1d')