Skip to content

Commit

Permalink
Merge pull request #94836 from bruvzg/win7_angle
Browse files Browse the repository at this point in the history
[Windows] Remove libSynchronization
  • Loading branch information
akien-mga committed Jul 28, 2024
2 parents 036a3ef + 5d5d519 commit 65e0461
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/windows/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ def spawn_capture(sh, escape, cmd, args, env):
"libEGL.windows." + env["arch"] + prebuilt_lib_extra_suffix,
"libGLES.windows." + env["arch"] + prebuilt_lib_extra_suffix,
]
LIBS += ["dxgi", "d3d9", "d3d11", "synchronization"]
LIBS += ["dxgi", "d3d9", "d3d11"]
env.Prepend(CPPPATH=["#thirdparty/angle/include"])

if env["target"] in ["editor", "template_debug"]:
Expand Down Expand Up @@ -817,7 +817,7 @@ def configure_mingw(env: "SConsEnvironment"):
"ANGLE.windows." + env["arch"],
]
)
env.Append(LIBS=["dxgi", "d3d9", "d3d11", "synchronization"])
env.Append(LIBS=["dxgi", "d3d9", "d3d11"])
env.Prepend(CPPPATH=["#thirdparty/angle/include"])

env.Append(CPPDEFINES=["MINGW_ENABLED", ("MINGW_HAS_SECURE_API", 1)])
Expand Down

0 comments on commit 65e0461

Please sign in to comment.