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:
authorHugo Beauzée-Luyssen <hugo@videolan.org>2018-10-02 15:58:31 +0300
committerHugo Beauzée-Luyssen <hugo@videolan.org>2018-10-02 15:58:31 +0300
commit7efdb714020ad37211336ca02b48c38e41afe359 (patch)
tree134b43da1da61ee519fa378e8d80eeb4ace0b0af
parentfc6eae6e51e3a3e914c807697a781bff702fbaea (diff)
meson: Move pkg-config generation in src/
-rw-r--r--meson.build13
-rw-r--r--src/meson.build11
2 files changed, 11 insertions, 13 deletions
diff --git a/meson.build b/meson.build
index 1bf915e..90990db 100644
--- a/meson.build
+++ b/meson.build
@@ -286,16 +286,3 @@ subdir('src')
subdir('tools')
subdir('tests')
-
-
-
-#
-# Generate pkg-config .pc file
-#
-pkg_mod = import('pkgconfig')
-pkg_mod.generate(libraries: libdav1d,
- version: meson.project_version(),
- name: 'libdav1d',
- filebase: 'dav1d',
- description: 'AV1 decoding library'
-)
diff --git a/src/meson.build b/src/meson.build
index e4cfcff..b6504d7 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -199,3 +199,14 @@ libdav1d = library('dav1d',
soversion : dav1d_soversion,
install : true,
)
+
+#
+# Generate pkg-config .pc file
+#
+pkg_mod = import('pkgconfig')
+pkg_mod.generate(libraries: libdav1d,
+ version: meson.project_version(),
+ name: 'libdav1d',
+ filebase: 'dav1d',
+ description: 'AV1 decoding library'
+)