mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-27 01:46:51 +00:00
1d1af807e4
Avoid oversubscribing shared runners.
11 lines
268 B
Bash
Executable file
11 lines
268 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
# SPDX-FileCopyrightText: 2018-2022 Collabora, Ltd. and the Monado contributors
|
|
set -e
|
|
set -x
|
|
|
|
rm -rf build
|
|
cmake -GNinja -B build -S . "$@"
|
|
echo "Build Options:"; grep "^XRT_" build/CMakeCache.txt
|
|
ninja -C build
|