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:
authorSteve Lhomme <robux4@videolan.org>2018-11-09 16:01:49 +0300
committerMarvin Scholz <epirat07@gmail.com>2018-11-12 15:11:20 +0300
commitd06e0d6d9d0393db7d4da1304b048f29e9724eff (patch)
tree8a18bb458399f6605e412c2d6fefc4416dcdc8c6
parent9a2582c4f5b4d0e06ca508490dbb4c7a652f045d (diff)
do not try to build the windows .rc file if we're building for a static target
-rw-r--r--src/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build
index 5515c2e..992db50 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -131,7 +131,7 @@ endif
# Windows .rc file
#
-if host_machine.system() == 'windows'
+if host_machine.system() == 'windows' and get_option('default_library') != 'static'
winmod = import('windows')
rc_data = configuration_data()
rc_data.set('VERSION_MAJOR', dav1d_version_major)