mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Improvements to scons defined WINVER/_WIN32_WINNT
This commit is contained in:
parent
ad224295c0
commit
65483d57bf
4 changed files with 12 additions and 14 deletions
|
@ -145,9 +145,13 @@ def configure(env):
|
|||
|
||||
env.Append(CCFLAGS=['/DGLES2_ENABLED', '/DGL_GLEXT_PROTOTYPES', '/DEGL_EGLEXT_PROTOTYPES', '/DANGLE_ENABLED'])
|
||||
|
||||
winver = "0x0602" # Windows 8 is the minimum target for UWP build
|
||||
env.Append(CCFLAGS=['/DWINVER=%s' % winver, '/D_WIN32_WINNT=%s' % winver])
|
||||
|
||||
LIBS = [
|
||||
'WindowsApp',
|
||||
'mincore',
|
||||
'ws2_32',
|
||||
'libANGLE',
|
||||
'libEGL',
|
||||
'libGLESv2',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue