Some checks failed
continuous-integration/drone/push Build is failing
reviewed-on: #8 Co-authored-by: light7734 <light7734@tuta.io> Co-committed-by: light7734 <light7734@tuta.io>
14 lines
299 B
Bash
Executable file
14 lines
299 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
cd $(git rev-parse --show-toplevel)/
|
|
rm -rf ./build
|
|
|
|
conan build . \
|
|
-c tools.system.package_manager:mode=install \
|
|
-c tools.cmake.cmaketoolchain:generator=Ninja \
|
|
-s build_type=Release \
|
|
-o enable_static_analysis=True \
|
|
-o enable_tests=True \
|
|
-o use_mold=True \
|
|
--build=missing
|