summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-03-28 22:48:24 +0800
committerJia Tan <jiat0218@gmail.com>2023-03-29 23:46:43 +0800
commitd0faa85df5a5d253a4625d45313cf5e9277e6cd2 (patch)
treee9419233898176c7065972e565607de93b000c3b /build-aux
parent8be5cc3b1359d88b4b30a39067466c0ae0bfbc4d (diff)
downloadxz-d0faa85df5a5d253a4625d45313cf5e9277e6cd2.tar.gz
CI: Tests for disabling threading on CMake builds.
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/ci_build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/ci_build.sh b/build-aux/ci_build.sh
index 7fb180c..724e66d 100755
--- a/build-aux/ci_build.sh
+++ b/build-aux/ci_build.sh
@@ -202,13 +202,13 @@ then
make
;;
cmake)
- # The CMake build currently does not support disabling
- # threading.
cd "$DEST_DIR"
add_to_filter_list "$BCJ" ";x86;powerpc;ia64;arm;armthumb;arm64;sparc"
add_to_filter_list "$DELTA" ";delta"
+ add_extra_option "$THREADS" "-DENABLE_THREADS=ON" "-DENABLE_THREADS=OFF"
+
# Disable MicroLZMA if encoders are not configured.
add_extra_option "$ENCODERS" "-DENCODERS=$FILTER_LIST" "-DENCODERS= -DMICROLZMA_ENCODER=OFF"