summaryrefslogtreecommitdiffstats
path: root/platform
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-07-28 17:46:59 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-07-28 17:46:59 +0200
commit65e046159becac3542c6f9b8cd1fcd6ed36ac476 (patch)
tree7f4225647af5909160e4e10e00ab9fa186e1c7d5 /platform
parent036a3ef39c97161e761a33ddeecf115ef5cac85b (diff)
parent5d5d51937fb81dd9ca7b24412bac94a6e15785dc (diff)
downloadredot-engine-65e046159becac3542c6f9b8cd1fcd6ed36ac476.tar.gz
Merge pull request #94836 from bruvzg/win7_angle
[Windows] Remove libSynchronization
Diffstat (limited to 'platform')
-rw-r--r--platform/windows/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py
index bfbf7d3ebc..b4830c5908 100644
--- a/platform/windows/detect.py
+++ b/platform/windows/detect.py
@@ -589,7 +589,7 @@ def configure_msvc(env: "SConsEnvironment", vcvars_msvc_config):
"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"]:
@@ -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)])