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>2019-02-19 01:46:59 +0300
committerJanne Grunau <janne-vlc@jannau.net>2019-02-19 01:52:56 +0300
commit8d3bc55c32d5433c975b4e5fc07fefdf8be8bb50 (patch)
tree92bd011f125b3ba95a16dcc4cf283c12aa98c05e /meson.build
parent03315f95e617cac285dc1aaec9db04a0ed64f731 (diff)
build: change include_directories order
Listing 'include/dav1d' before 'include' prefers the generated version.h in include/dav1d/ over the previous one in include/. This allows the use of '#include "version.h"' in dav1d.h. See !592.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 97c537b..a7867a9 100644
--- a/meson.build
+++ b/meson.build
@@ -45,7 +45,7 @@ cdata = configuration_data()
cdata_asm = configuration_data()
# Include directories
-dav1d_inc_dirs = include_directories(['.', 'include', 'include/dav1d'])
+dav1d_inc_dirs = include_directories(['.', 'include/dav1d', 'include'])