summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnuthaDev <anuthadev@gmail.com>2021-07-20 21:22:14 +0530
committerWerner Lemberg <wl@gnu.org>2021-07-24 08:31:42 +0200
commit28c2d7f31c0758e69dded02acfa32af080774e91 (patch)
treeb302dc4d990b18bc1553e1c88ab62b10b76e7b81
parent1f742f05bf21234236b54f52c3ef8cc8973131b1 (diff)
downloadfreetype2-28c2d7f31c0758e69dded02acfa32af080774e91.tar.gz
* .gitlab-ci.yml: Fixed cmake build, using correct options.
-rw-r--r--.gitlab-ci.yml20
1 files changed, 10 insertions, 10 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fe3567bdf..f8f0b009a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -123,21 +123,21 @@ linux meson libs:
linux cmake:
extends: '.build linux common'
script: |
- cmake -B build -D FT_WITH_BROTLI=OFF \
- -D FT_WITH_BZIP2=OFF \
- -D FT_WITH_HARFBUZZ=OFF \
- -D FT_WITH_PNG=OFF \
- -D FT_WITH_ZLIB=OFF
+ cmake -B build -D FT_DISABLE_BROTLI=TRUE \
+ -D FT_DISABLE_BZIP2=TRUE \
+ -D FT_DISABLE_HARFBUZZ=TRUE \
+ -D FT_DISABLE_PNG=TRUE \
+ -D FT_DISABLE_ZLIB=TRUE
cmake --build build --target install
linux cmake libs:
extends: '.build linux common'
script: |
- cmake -B build -D FT_WITH_BROTLI=ON \
- -D FT_WITH_BZIP2=ON \
- -D FT_WITH_HARFBUZZ=ON \
- -D FT_WITH_PNG=ON \
- -D FT_WITH_ZLIB=ON
+ cmake -B build -D FT_REQUIRE_BROTLI=TRUE \
+ -D FT_REQUIRE_BZIP2=TRUE \
+ -D FT_REQUIRE_HARFBUZZ=TRUE \
+ -D FT_REQUIRE_PNG=TRUE \
+ -D FT_REQUIRE_ZLIB=TRUE
cmake --build build --target install