Skip to content

Commit a6bf0e1

Browse files
authored
Disable Brotli in CMake build arguments
Updated CMake arguments to disable Brotli during build.
1 parent c8afe28 commit a6bf0e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/BuildMacOSTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public override void Run(BuildContext context)
1616
// Build
1717
var buildDir = "freetype/build";
1818
context.CreateDirectory(buildDir);
19-
context.StartProcess("cmake", new ProcessSettings { WorkingDirectory = buildDir, Arguments = "../ -DBUILD_SHARED_LIBS=true -DCMAKE_OSX_DEPLOYMENT_TARGET=10.5 -DFT_DISABLE_HARFBUZZ=TRUE -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES=\"x86_64;arm64\"" });
19+
context.StartProcess("cmake", new ProcessSettings { WorkingDirectory = buildDir, Arguments = "../ -DBUILD_SHARED_LIBS=true -DCMAKE_OSX_DEPLOYMENT_TARGET=10.5 -DFT_DISABLE_BROTLI=TRUE -DFT_DISABLE_HARFBUZZ=TRUE -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES=\"x86_64;arm64\"" });
2020
context.StartProcess("make", new ProcessSettings { WorkingDirectory = buildDir });
2121

2222
foreach (var filePath in Directory.GetFiles("freetype/build"))

0 commit comments

Comments
 (0)