Skip to content

Commit

Permalink
winbuild: Build freetype.vcxproj to fix passing in custom parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
nulano committed Sep 22, 2024
1 parent b557876 commit 6081640
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions winbuild/build_prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,12 @@ def cmd_msbuild(
},
"build": [
cmd_rmdir("objs"),
cmd_msbuild("MSBuild.sln", "Release Static", "Clean"),
cmd_msbuild("MSBuild.sln", "Release Static", "Build"),
cmd_msbuild(
r"builds\windows\vc2010\freetype.vcxproj", "Release Static", "Clean"
),
cmd_msbuild(
r"builds\windows\vc2010\freetype.vcxproj", "Release Static", "Build"
),
cmd_xcopy("include", "{inc_dir}"),
],
"libs": [r"objs\{msbuild_arch}\Release Static\freetype.lib"],
Expand Down

0 comments on commit 6081640

Please sign in to comment.