freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[freetype2] master 28c2d7f 2/2: * .gitlab-ci.yml: Fixed cmake build, us


From: Werner Lemberg
Subject: [freetype2] master 28c2d7f 2/2: * .gitlab-ci.yml: Fixed cmake build, using correct options.
Date: Sat, 24 Jul 2021 02:32:38 -0400 (EDT)

branch: master
commit 28c2d7f31c0758e69dded02acfa32af080774e91
Author: AnuthaDev <anuthadev@gmail.com>
Commit: Werner Lemberg <wl@gnu.org>

    * .gitlab-ci.yml: Fixed cmake build, using correct options.
---
 .gitlab-ci.yml | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fe3567b..f8f0b00 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]