installdeps: add -DCMAKE_BUILD_TYPE=Release

Add -DCMAKE_BUILD_TYPE=Release to cmake invocation in build instructions
in installdeps.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2022-03-18 19:18:08 +00:00
parent 8c1ebf4d59
commit 8caea3ae6c
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 1 additions and 1 deletions

View File

@ -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