summaryrefslogtreecommitdiffstats
path: root/.ci/scripts/clang
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-07-23 02:54:47 +0200
committerGitHub <noreply@github.com>2022-07-23 02:54:47 +0200
commit58081a3664e3c069cd4efe5d96502c2fcc831535 (patch)
tree06ba40b5701eff84160b6a85e8075b7b66b3a08f /.ci/scripts/clang
parentMerge pull request #8598 from Link4565/recv-dontwait (diff)
parentgitmodules: Remove 'externals' from names of submodules (diff)
downloadyuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.gz
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.bz2
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.lz
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.xz
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.zst
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.zip
Diffstat (limited to '.ci/scripts/clang')
-rwxr-xr-x.ci/scripts/clang/docker.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/.ci/scripts/clang/docker.sh b/.ci/scripts/clang/docker.sh
index 94a9ca0ec..db736f72b 100755
--- a/.ci/scripts/clang/docker.sh
+++ b/.ci/scripts/clang/docker.sh
@@ -6,7 +6,17 @@ set -e
ccache -s
mkdir build || true && cd build
-cmake .. -GNinja -DDISPLAY_VERSION=$1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/clang -DCMAKE_CXX_COMPILER=/usr/lib/ccache/clang++ -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DCMAKE_INSTALL_PREFIX="/usr"
+cmake .. \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_CXX_COMPILER=/usr/lib/ccache/clang++ \
+ -DCMAKE_C_COMPILER=/usr/lib/ccache/clang \
+ -DCMAKE_INSTALL_PREFIX="/usr" \
+ -DDISPLAY_VERSION=$1 \
+ -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \
+ -DENABLE_QT_TRANSLATION=ON \
+ -DUSE_DISCORD_PRESENCE=ON \
+ -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} \
+ -GNinja
ninja