<div dir="ltr">Hi,<br><div><br><div class="gmail_quote"><div dir="ltr">On Tue, Sep 25, 2018 at 12:11 PM Hugo Beauzée-Luyssen <<a href="mailto:hugo@beauzee.fr">hugo@beauzee.fr</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">From: Steve Lhomme <<a href="mailto:robux4@ycbcr.xyz" target="_blank">robux4@ycbcr.xyz</a>><br>
<br>
to differentiate optimized and debug builds<br>
---<br>
 contrib/src/main.mak | 8 ++++++++<br>
 1 file changed, 8 insertions(+)<br>
<br>
diff --git a/contrib/src/main.mak b/contrib/src/main.mak<br>
index ddd8b16aaa..0f8b51088f 100644<br>
--- a/contrib/src/main.mak<br>
+++ b/contrib/src/main.mak<br>
@@ -355,6 +355,14 @@ ifeq ($(V),1)<br>
 CMAKE += -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON<br>
 endif<br>
<br>
+MESON = meson --default-library static --prefix "$(PREFIX)" --backend ninja<br></blockquote><div><br></div><div>Will there be a minimum version check of meson somewhere? Also, that it's in your path? dav1d requires 0.47 or greater (although it will error out with that information).<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
+ifndef WITH_OPTIMIZATION<br>
+MESON += --buildtype debug<br>
+else<br>
+MESON += --buildtype release<br>
+endif<br>
+<br>
+<br>
<br>
 ifdef GPL<br>
 REQUIRE_GPL =<br>
-- <br>
2.18.0<br>
<br>
_______________________________________________<br>
vlc-devel mailing list<br>
To unsubscribe or modify your subscription options:<br>
<a href="https://mailman.videolan.org/listinfo/vlc-devel" rel="noreferrer" target="_blank">https://mailman.videolan.org/listinfo/vlc-devel</a></blockquote></div></div></div>