Skip to content

Commit

Permalink
Missed a dynamic lib
Browse files Browse the repository at this point in the history
  • Loading branch information
harry-cpp committed Nov 8, 2023
1 parent 3d13f40 commit 27f581b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build/BuildLinuxTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public override void Run(BuildContext context)
{
// Make sure it statically links the dpeendencies
context.ReplaceRegexInFiles("freetype/meson.build", @" dependency\('([^']+)',", "dependency('$1', static: true,");
context.ReplaceRegexInFiles("freetype/meson.build", @" cc.find_library\('([^']+)',", "cc.find_library('$1', static: true,");
context.ReplaceTextInFiles("freetype/meson.build", "meson.override_dependency('freetype2', freetype_dep)", "");

// Build
Expand Down

0 comments on commit 27f581b

Please sign in to comment.