From 8caea3ae6cc2e30a234725ee4edf4ebdd60a2051 Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Fri, 18 Mar 2022 19:18:08 +0000 Subject: [PATCH] installdeps: add -DCMAKE_BUILD_TYPE=Release Add -DCMAKE_BUILD_TYPE=Release to cmake invocation in build instructions in installdeps. Signed-off-by: Rafael Kitover --- installdeps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installdeps b/installdeps index a2107325..3aaaf5f8 100755 --- a/installdeps +++ b/installdeps @@ -1230,7 +1230,7 @@ build_instructions() { $pre_build mkdir build && cd build -$CMAKE .. $cmake_flags -G Ninja +$CMAKE .. -DCMAKE_BUILD_TYPE=Release $cmake_flags -G Ninja ninja $post_build