summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-11-24 05:17:37 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-11-24 05:23:25 +0530
commit627ab53b9e670f897d2e70827dc3a6fa3150a9ba (patch)
tree5909a7c22a6094376532f75fb1ada5a7d3102a54 /config
parentfb8a66ae535e88c903af79437c4db1781cce7752 (diff)
cerbero: Do not build any recipes with Visual Studio
Switch the default from building Meson recipes with MSVC by default to using MinGW. We still haven't fully solved the CRT interop issues w.r.t. backtraces and some APIs such as FILE. This fixes some blockers for the 1.15.1 release. This will be revisited for 1.15.2 Fixes https://gitlab.freedesktop.org/gstreamer/cerbero/issues/77 Fixes https://gitlab.freedesktop.org/gstreamer/cerbero/issues/83 Fixes https://gitlab.freedesktop.org/gstreamer/cerbero/issues/88
Diffstat (limited to 'config')
-rw-r--r--config/windows.config6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/windows.config b/config/windows.config
index 4fe24102..c9affbb6 100644
--- a/config/windows.config
+++ b/config/windows.config
@@ -88,9 +88,9 @@ if platform == Platform.WINDOWS:
os.environ['ACLOCAL'] = 'aclocal-1.11'
- # We use Visual Studio by default on Windows
- if 'novisualstudio' not in variants:
- variants.append('visualstudio')
+ # We currently don't use Visual Studio by default on Windows
+ if 'visualstudio' not in variants:
+ variants.append('novisualstudio')
from cerbero.ide.vs.env import get_msvc_env, append_path
# Contains only the env vars that MSVC needs, including any existing vars