CCF/scan-build.sh

11 строки
276 B
Bash
Executable File

#!/bin/bash
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the Apache 2.0 License.
export CCC_CC=clang-8
export CCC_CXX=clang++-8
SCAN="scan-build-8 --exclude 3rdparty --exclude test"
$SCAN cmake -GNinja -DCMAKE_BUILD_TYPE=Debug ..
$SCAN ninja