diff options
author | George Marques <george@gmarqu.es> | 2017-07-12 01:23:44 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2017-07-12 01:24:07 -0300 |
commit | f55fff35286eb970f5db0c0cbfd2e96eb3aff8bc (patch) | |
tree | 9bd199ae8e119787e8ba97f1aa4985e94e6f3454 /platform | |
parent | a7d1c902cc98e41edd11279405cace06ca94cac1 (diff) |
UWP: Fix problem with Cert Kit validation
Diffstat (limited to 'platform')
-rw-r--r-- | platform/uwp/detect.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/platform/uwp/detect.py b/platform/uwp/detect.py index ca469d0056..64dac93f1f 100644 --- a/platform/uwp/detect.py +++ b/platform/uwp/detect.py @@ -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']) |