mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
UWP: Fix problem with Cert Kit validation
This commit is contained in:
parent
a7d1c902cc
commit
f55fff3528
1 changed files with 1 additions and 2 deletions
|
@ -115,7 +115,6 @@ def configure(env):
|
|||
|
||||
angle_build_cmd += "Win32"
|
||||
|
||||
env.Append(CPPFLAGS=['/DPNG_ABORT=abort'])
|
||||
env.Append(LINKFLAGS=['/MACHINE:X86'])
|
||||
env.Append(LIBPATH=[vc_base_path + 'lib/store'])
|
||||
env.Append(LIBPATH=[angle_root + '/winrt/10/src/Release_Win32/lib'])
|
||||
|
@ -141,7 +140,7 @@ def configure(env):
|
|||
winver = "0x0602" # Windows 8 is the minimum target for UWP build
|
||||
env.Append(CCFLAGS=['/DWINVER=%s' % winver, '/D_WIN32_WINNT=%s' % winver])
|
||||
|
||||
env.Append(CPPFLAGS=['/D', '__WRL_NO_DEFAULT_LIB__', '/D', 'WIN32'])
|
||||
env.Append(CPPFLAGS=['/D', '__WRL_NO_DEFAULT_LIB__', '/D', 'WIN32', '/DPNG_ABORT=abort'])
|
||||
|
||||
env.Append(CPPFLAGS=['/AI', vc_base_path + 'lib/store/references'])
|
||||
env.Append(CPPFLAGS=['/AI', vc_base_path + 'lib/x86/store/references'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue