1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

Improvements to scons defined WINVER/_WIN32_WINNT

(cherry picked from commit 65483d57bf)
This commit is contained in:
Fabio Alessandrelli
2016-11-03 05:20:26 +01:00
committed by Rémi Verschelde
parent 8a5596322d
commit 9c8ecb45f8
4 changed files with 12 additions and 10 deletions

View File

@@ -136,8 +136,12 @@ def configure(env):
env.Append(CCFLAGS=['/DGLES2_ENABLED'])
# env.Append(CCFLAGS=['/DGLES1_ENABLED'])
winver = "0x0602" # Windows 8 is the minimum target for UWP build
env.Append(CCFLAGS=['/DWINVER=%s' % winver, '/D_WIN32_WINNT=%s' % winver])
LIBS = [
#'winmm',
'ws2_32',
'libEGL',
'libGLESv2',
'libANGLE',